22 lines
435 B
Java
22 lines
435 B
Java
package java.lang;
|
|
|
|
public class IllegalStateException extends RuntimeException {
|
|
|
|
public IllegalStateException() {
|
|
super();
|
|
}
|
|
|
|
public IllegalStateException(String s) {
|
|
super(s);
|
|
}
|
|
|
|
public IllegalStateException(String message,
|
|
Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
public IllegalStateException(Throwable cause) {
|
|
super(cause);
|
|
}
|
|
}
|