1 7 8 package javax.management; 9 10 11 19 public class RuntimeMBeanException extends JMRuntimeException { 20 21 22 private static final long serialVersionUID = 5274912751982730171L; 23 24 27 private java.lang.RuntimeException runtimeException ; 28 29 30 35 public RuntimeMBeanException(java.lang.RuntimeException e) { 36 super() ; 37 runtimeException = e ; 38 } 39 40 47 public RuntimeMBeanException(java.lang.RuntimeException e, String message) { 48 super(message) ; 49 runtimeException = e ; 50 } 51 52 57 public java.lang.RuntimeException getTargetException() { 58 return runtimeException ; 59 } 60 61 66 public Throwable getCause() { 67 return runtimeException; 68 } 69 } 70 | Popular Tags |