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