mirror of
https://github.com/corda/corda.git
synced 2025-06-13 12:48:18 +00:00
sketch a few more classpath classes
This commit is contained in:
19
classpath/java/lang/reflect/InvocationTargetException.java
Normal file
19
classpath/java/lang/reflect/InvocationTargetException.java
Normal 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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user