mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
flesh out classpath enough to test threading; fix indexing bug in parsePool()
This commit is contained in:
19
classpath/java/lang/InterruptedException.java
Normal file
19
classpath/java/lang/InterruptedException.java
Normal file
@ -0,0 +1,19 @@
|
||||
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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user