All Packages Class Hierarchy This Package Previous Next Index
Class java.lang.Exception
java.lang.Object
|
+----java.lang.Throwable
|
+----java.lang.Exception
- public class Exception
- extends Throwable
- super class of:
- AWTException, AclNotFoundException, AlreadyBoundException, ClassNotFoundException, CloneNotSupportedException, DataFormatException, DigestException, IOException, IllegalAccessException, InstantiationException, InterruptedException, IntrospectionException, InvocationTargetException, KeyException, LastOwnerException, NoSuchAlgorithmException, NoSuchFieldException, NoSuchMethodException, NoSuchProviderException, NotBoundException, NotOwnerException, ParseException, PropertyVetoException, RuntimeException, SQLException, ServerNotActiveException, SignatureException, TooManyListenersException, UnsupportedFlavorException
The class Exception
and its subclasses are a form of
Throwable
that indicates conditions that a reasonable
application might want to catch.
- Since:
- JDK1.0
- See Also:
- Error
-
Exception()
- Constructs an
Exception
with no specified detail message.
-
Exception(String)
- Constructs an
Exception
with the specified detail message.
Exception
public Exception()
- Constructs an
Exception
with no specified detail message.
Exception
public Exception(String s)
- Constructs an
Exception
with the specified detail message.
- Parameters:
- s - the detail message.
All Packages Class Hierarchy This Package Previous Next Index
Submit a bug or feature