Constructors Summary |
---|
public ExceptionInInitializerError()Constructs a new {@code ExceptionInInitializerError} that includes the
current stack trace.
super();
initCause(null);
|
public ExceptionInInitializerError(String detailMessage)Constructs a new {@code ExceptionInInitializerError} with the current
stack trace and the specified detail message.
super(detailMessage);
initCause(null);
|
public ExceptionInInitializerError(Throwable exception)Constructs a new {@code ExceptionInInitializerError} with the current
stack trace and the specified cause. The exception should be the one
which originally occurred in the class initialization code.
super();
this.exception = exception;
initCause(exception);
|