1 22 package org.jboss.mx.util; 23 24 import javax.management.JMRuntimeException ; 25 26 31 public class RuntimeProxyException 32 extends JMRuntimeException  33 { 34 private static final long serialVersionUID = -1166909485463779459L; 35 36 public RuntimeProxyException() 38 { 39 super(); 40 } 41 42 public RuntimeProxyException(String msg) 43 { 44 super(msg); 45 } 46 } 47 48 49 50 51 | Popular Tags |