sketch a few more classpath classes

This commit is contained in:
Joel Dice
2007-07-21 14:44:39 -06:00
parent 48226f988c
commit fd770fd884
17 changed files with 497 additions and 7 deletions

View File

@ -0,0 +1,19 @@
package java.lang.reflect;
public class InvocationTargetException extends Exception {
public InvocationTargetException(Throwable targetException, String message) {
super(message, targetException);
}
public InvocationTargetException(Throwable targetException) {
this(targetException, null);
}
public InvocationTargetException() {
this(null, null);
}
public Throwable getTargetException() {
return getCause();
}
}