corda/classpath/java/lang/reflect/InvocationTargetException.java
2007-07-21 14:44:39 -06:00

20 lines
448 B
Java

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