home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / javax / management / ReflectionException.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  575 b   |  24 lines

  1. package javax.management;
  2.  
  3. public class ReflectionException extends JMException {
  4.    private static final long serialVersionUID = 9170809325636915553L;
  5.    private Exception exception;
  6.  
  7.    public ReflectionException(Exception var1) {
  8.       this.exception = var1;
  9.    }
  10.  
  11.    public ReflectionException(Exception var1, String var2) {
  12.       super(var2);
  13.       this.exception = var1;
  14.    }
  15.  
  16.    public Exception getTargetException() {
  17.       return this.exception;
  18.    }
  19.  
  20.    public Throwable getCause() {
  21.       return this.exception;
  22.    }
  23. }
  24.