mirror of
https://github.com/corda/corda.git
synced 2025-01-08 14:03:06 +00:00
Added IllegalThreadStateException, which is used by java.lang.Process
This commit is contained in:
parent
156bd5cf1a
commit
266c256116
20
classpath/java/lang/IllegalThreadStateException.java
Normal file
20
classpath/java/lang/IllegalThreadStateException.java
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
package java.lang;
|
||||||
|
|
||||||
|
public class IllegalThreadStateException extends IllegalArgumentException {
|
||||||
|
public IllegalThreadStateException(String message, Throwable cause) {
|
||||||
|
super(message, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public IllegalThreadStateException(String message) {
|
||||||
|
this(message, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
public IllegalThreadStateException(Throwable cause) {
|
||||||
|
this(null, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public IllegalThreadStateException() {
|
||||||
|
this(null, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user