1 7 8 9 package javax.management.openmbean; 10 11 12 import java.io.Serializable ; 15 16 17 20 21 31 public class InvalidOpenTypeException 32 extends IllegalArgumentException  33 implements Serializable { 34 35 private static final long serialVersionUID = -2837312755412327534L; 36 37 38 public InvalidOpenTypeException() { 39 super(); 40 } 41 42 47 public InvalidOpenTypeException(String msg) { 48 super(msg); 49 } 50 51 } 52 | Popular Tags |