Constructors Summary |
---|
public Error()Constructs a new {@code Error} that includes the current stack trace.
super();
|
public Error(String detailMessage)Constructs a new {@code Error} with the current stack trace and the
specified detail message.
super(detailMessage);
|
public Error(String detailMessage, Throwable throwable)Constructs a new {@code Error} with the current stack trace, the
specified detail message and the specified cause.
super(detailMessage, throwable);
|
public Error(Throwable throwable)Constructs a new {@code Error} with the current stack trace and the
specified cause.
super(throwable);
|