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