home *** CD-ROM | disk | FTP | other *** search
- package java.lang.reflect;
-
- public class InvocationTargetException extends Exception {
- private Throwable target;
-
- protected InvocationTargetException() {
- }
-
- public InvocationTargetException(Throwable var1) {
- this.target = var1;
- }
-
- public InvocationTargetException(Throwable var1, String var2) {
- super(var2);
- this.target = var1;
- }
-
- public Throwable getTargetException() {
- return this.target;
- }
- }
-