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 / RuntimeOperationsException.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  624 b   |  24 lines

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