mirror of
https://github.com/corda/corda.git
synced 2025-01-10 06:52:44 +00:00
12 lines
240 B
Java
12 lines
240 B
Java
|
package java.lang;
|
||
|
|
||
|
public class IllegalMonitorStateException extends RuntimeException {
|
||
|
public IllegalMonitorStateException(String message) {
|
||
|
super(message, null);
|
||
|
}
|
||
|
|
||
|
public IllegalMonitorStateException() {
|
||
|
this(null);
|
||
|
}
|
||
|
}
|