flesh out classpath enough to test threading; fix indexing bug in parsePool()

This commit is contained in:
Joel Dice
2007-07-04 16:27:08 -06:00
parent 1182ea9540
commit c3320c2c97
14 changed files with 240 additions and 12 deletions

View 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);
}
}