protected Exception(String message,
Throwable cause,
boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
Constructs a new exception with the specified detail message,
cause, suppression enabled or disabled, and writable stack
trace enabled or disabled. Parameters:
message - the detail message.
cause - the cause. (A {@code null} value is permitted,
and indicates that the cause is nonexistent or unknown.)
enableSuppression - whether or not suppression is enabled
or disabled
writableStackTrace - whether or not the stack trace should
be writable
- since:
1.7 -
|