Constructors Summary |
---|
public IllegalStateException()Constructs a new instance with null as its detail message. super();
|
public IllegalStateException(String message)Constructs a new instance with the specified detail message.
super(message);
|
public IllegalStateException(Throwable cause)Constructs a new throwable with the specified cause.
super(cause);
|
public IllegalStateException(String message, Throwable cause)Constructs a new throwable with the specified detail message and cause.
super(message, cause);
|
public IllegalStateException(String message, String errorCode)Constructs a new throwable with the specified detail message and
an error code.
super(message, errorCode);
|