| java.lang.Object java.lang.Throwable java.lang.Error
All known Subclasses: java.lang.annotation.AnnotationFormatError, java.awt.AWTError, java.nio.charset.CoderMalfunctionError, java.lang.AssertionError, java.lang.LinkageError,
Error | public class Error extends Throwable (Code) | | This class is the superclass of all classes which represent unrecoverable
errors. When Errors are thrown, they should not be caught by application
code.
See Also: Throwable See Also: Exception See Also: RuntimeException |
Constructor Summary | |
public | Error() Constructs a new instance of this class with its walkback filled in. | public | Error(String detailMessage) Constructs a new instance of this class with its walkback and message
filled in. | public | Error(String detailMessage, Throwable throwable) Constructs a new instance of this class with its walkback, message and
cause filled in. | public | Error(Throwable throwable) Constructs a new instance of this class with its walkback and cause
filled in. |
Error | public Error()(Code) | | Constructs a new instance of this class with its walkback filled in.
|
Error | public Error(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. |
Error | public Error(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 |
Error | public Error(Throwable throwable)(Code) | | Constructs a new instance of this class with its walkback and cause
filled in.
Parameters: throwable - The cause of this Throwable |
|
|