| java.lang.Object java.lang.Throwable java.lang.Exception
Exception | public class Exception extends Throwable (Code) | | This class is the superclass of all classes which represent recoverable
exceptions. When Exceptions are thrown, they may be caught by application
code.
See Also: Throwable See Also: Error See Also: RuntimeException |
Constructor Summary | |
public | Exception() Constructs a new instance of this class with its walkback filled in. | public | Exception(String detailMessage) Constructs a new instance of this class with its walkback and message
filled in. | public | Exception(String detailMessage, Throwable throwable) Constructs a new instance of this class with its walkback, message and
cause filled in. | public | Exception(Throwable throwable) Constructs a new instance of this class with its walkback and cause
filled in. |
Exception | public Exception()(Code) | | Constructs a new instance of this class with its walkback filled in.
|
Exception | public Exception(String detailMessage)(Code) | | Constructs a new instance of this class with its walkback and message
filled in.
Parameters: detailMessage - String The detail message for the exception. |
Exception | public Exception(String detailMessage, Throwable throwable)(Code) | | Constructs a new instance of this class with its walkback, message and
cause filled in.
Parameters: detailMessage - String The detail message for the exception. Parameters: throwable - The cause of this Throwable |
Exception | public Exception(Throwable throwable)(Code) | | Constructs a new instance of this class with its walkback and cause
filled in.
Parameters: throwable - The cause of this Throwable |
|
|