| |
|
| java.lang.Object java.lang.Throwable java.lang.Error java.lang.LinkageError java.lang.ExceptionInInitializerError
ExceptionInInitializerError | public class ExceptionInInitializerError extends LinkageError (Code) | | This error is thrown when an exception occurs during class initialization.
|
Method Summary | |
public Throwable | getCause() Answers the cause of this Throwable, or null if there is no cause. | public Throwable | getException() Answers the exception which was passed in when the instance was created. |
ExceptionInInitializerError | public ExceptionInInitializerError()(Code) | | Constructs a new instance of this class with its walkback filled in.
|
ExceptionInInitializerError | public ExceptionInInitializerError(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. |
ExceptionInInitializerError | public ExceptionInInitializerError(Throwable exception)(Code) | | Constructs a new instance of this class with its walkback and exception
filled in. The exception should be the one which originally occurred in
the class initialization code.
Parameters: exception - Throwable The exception which caused the problem. |
getCause | public Throwable getCause()(Code) | | Answers the cause of this Throwable, or null if there is no cause.
Throwable The receiver's cause. |
getException | public Throwable getException()(Code) | | Answers the exception which was passed in when the instance was created.
|
|
|
|