mirror of
https://github.com/corda/corda.git
synced 2025-06-20 16:10:26 +00:00
more classpath classes
This commit is contained in:
19
classpath/java/lang/IllegalStateException.java
Normal file
19
classpath/java/lang/IllegalStateException.java
Normal file
@ -0,0 +1,19 @@
|
||||
package java.lang;
|
||||
|
||||
public class IllegalStateException extends RuntimeException {
|
||||
public IllegalStateException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
|
||||
public IllegalStateException(String message) {
|
||||
this(message, null);
|
||||
}
|
||||
|
||||
public IllegalStateException(Throwable cause) {
|
||||
this(null, cause);
|
||||
}
|
||||
|
||||
public IllegalStateException() {
|
||||
this(null, null);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user