mirror of
https://github.com/corda/corda.git
synced 2025-01-09 14:33:30 +00:00
21 lines
439 B
Java
21 lines
439 B
Java
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);
|
|
}
|
|
|
|
}
|