Class java.lang.Exception
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
Exception are a form of Throwable that normal programs may wish to try and catch.
-
Exception()
- Constructs an Exception with no specified detail message.
-
Exception(String)
- Constructs a Exception with the specified detail message.
Exception
public Exception()
- Constructs an Exception with no specified detail message.
A detail message is a String that describes this particular exception.
Exception
public Exception(String s)
- Constructs a Exception with the specified detail message.
A detail message is a String that describes this particular exception.
- Parameters:
- s - the detail message
All Packages Class Hierarchy This Package Previous Next Index