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