corda/classpath/java/lang/InterruptedException.java

20 lines
388 B
Java

package java.lang;
public class InterruptedException extends Exception {
public InterruptedException(String message, Throwable cause) {
super(message, cause);
}
public InterruptedException(String message) {
this(message, null);
}
public InterruptedException(Throwable cause) {
this(null, cause);
}
public InterruptedException() {
this(null, null);
}
}