Class java.lang.Exception
All Packages Class Hierarchy This Package Previous Next Index
Class java.lang.Exception
Object
|
+----Throwable
|
+----java.lang.Exception
- public class Exception
- extends Throwable
The class Exception and its subclasses are a form of
Throwable that indicates conditions that a reasonable
application might want to catch.
- Version:
- 1.23, 07/01/98
- Author:
- Frank Yellin
- Since:
- JDK1.0
- See Also:
- Error
-
java.lang.Exception()
- Constructs an
Exception with no specified detail message.
-
java.lang.Exception(String)
- Constructs an
Exception with the specified detail message.
Exception
public Exception()
- Constructs an
Exception with no specified detail message.
- Since:
- JDK1.0
Exception
public Exception(String s)
- Constructs an
Exception with the specified detail message.
- Parameters:
- s - the detail message.
- Since:
- JDK1.0
All Packages Class Hierarchy This Package Previous Next Index