1 7 8 package javax.management; 9 10 11 12 18 public class RuntimeOperationsException extends JMRuntimeException { 19 20 21 private static final long serialVersionUID = -8408923047489133588L; 22 23 26 private java.lang.RuntimeException runtimeException ; 27 28 29 34 public RuntimeOperationsException(java.lang.RuntimeException e) { 35 super() ; 36 runtimeException = e ; 37 } 38 39 46 public RuntimeOperationsException(java.lang.RuntimeException e, String message) { 47 super(message); 48 runtimeException = e ; 49 } 50 51 56 public java.lang.RuntimeException getTargetException() { 57 return runtimeException ; 58 } 59 60 65 public Throwable getCause() { 66 return runtimeException; 67 } 68 } 69 | Popular Tags |