home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 April / DPPCPRO0499.ISO / April / Notes / 50b2wic.exe / DATA1.CAB / NotesProgramFilesJavaSupport / rt.jar / java / lang / reflect / InvocationTargetException.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-04-23  |  655 b   |  22 lines

  1. package java.lang.reflect;
  2.  
  3. public class InvocationTargetException extends Exception {
  4.    private Throwable target;
  5.  
  6.    protected InvocationTargetException() {
  7.    }
  8.  
  9.    public InvocationTargetException(Throwable var1) {
  10.       this.target = var1;
  11.    }
  12.  
  13.    public InvocationTargetException(Throwable var1, String var2) {
  14.       super(var2);
  15.       this.target = var1;
  16.    }
  17.  
  18.    public Throwable getTargetException() {
  19.       return this.target;
  20.    }
  21. }
  22.