mirror of
https://github.com/corda/corda.git
synced 2025-01-04 04:04:27 +00:00
20 lines
448 B
Java
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();
|
|
}
|
|
}
|