more classpath classes

This commit is contained in:
Joel Dice
2007-07-21 16:36:51 -06:00
parent fd770fd884
commit 90d60b3459
13 changed files with 269 additions and 18 deletions

View File

@ -0,0 +1,19 @@
package java.lang;
public class IllegalStateException extends RuntimeException {
public IllegalStateException(String message, Throwable cause) {
super(message, cause);
}
public IllegalStateException(String message) {
this(message, null);
}
public IllegalStateException(Throwable cause) {
this(null, cause);
}
public IllegalStateException() {
this(null, null);
}
}