1 7 8 9 package javax.management.openmbean; 10 11 12 import java.io.Serializable ; 15 16 17 import javax.management.JMException ; 20 21 22 32 public class OpenDataException 33 extends JMException  34 implements Serializable { 35 36 private static final long serialVersionUID = 8346311255433349870L; 37 38 41 public OpenDataException() { 42 super(); 43 } 44 45 50 public OpenDataException(String msg) { 51 super(msg); 52 } 53 54 } 55 | Popular Tags |