public class Exception4D extends Throwable4D
msg, trace| Constructor and Description |
|---|
Exception4D()
Constructs an empty Exception.
|
Exception4D(java.lang.String msg)
Constructs an exception with the given message.
|
Exception4D(java.lang.String s,
Throwable4D cause)
Create an exception with a message and a cause.
|
Exception4D(java.lang.String message,
Throwable4D cause,
boolean enableSuppression,
boolean writableStackTrace) |
Exception4D(Throwable4D cause)
Create an exception with a given cause, and a message of
cause == null ? null : cause.toString(). |
addSuppressed, getCause, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, toStringpublic Exception4D()
public Exception4D(java.lang.String msg)
public Exception4D(java.lang.String s,
Throwable4D cause)
s - the message stringcause - the cause of this errorpublic Exception4D(Throwable4D cause)
cause == null ? null : cause.toString().cause - the cause of this exceptionpublic Exception4D(java.lang.String message,
Throwable4D cause,
boolean enableSuppression,
boolean writableStackTrace)