public class RuntimeException4D
extends java.lang.Exception
Constructor and Description |
---|
RuntimeException4D()
Constructs an empty Exception.
|
RuntimeException4D(java.lang.String msg)
Constructs an exception with the given message.
|
RuntimeException4D(java.lang.String s,
java.lang.Throwable cause)
Create an exception with a message and a cause.
|
RuntimeException4D(java.lang.String message,
java.lang.Throwable cause,
boolean enableSuppression,
boolean writableStackTrace) |
RuntimeException4D(java.lang.Throwable cause)
Create an exception with the given cause, and a message of
cause == null ? null : cause.toString() . |
public RuntimeException4D()
public RuntimeException4D(java.lang.String msg)
public RuntimeException4D(java.lang.String s, java.lang.Throwable cause)
s
- the message stringcause
- the cause of this exceptionpublic RuntimeException4D(java.lang.Throwable cause)
cause == null ? null : cause.toString()
.cause
- the cause of this exceptionpublic RuntimeException4D(java.lang.String message, java.lang.Throwable cause, boolean enableSuppression, boolean writableStackTrace)