1 28 29 package com.caucho.jmx; 30 31 import javax.management.JMRuntimeException ; 32 33 36 public class MBeanRuntimeException extends JMRuntimeException { 37 40 public MBeanRuntimeException() 41 { 42 } 43 44 47 public MBeanRuntimeException(String msg) 48 { 49 super(msg); 50 } 51 52 55 public MBeanRuntimeException(Throwable cause) 56 { 57 initCause(cause); 58 } 59 } 60 | Popular Tags |