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