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