1 7 8 package java.security; 9 10 20 21 public class KeyException extends GeneralSecurityException { 22 23 private static final long serialVersionUID = -7483676942812432108L; 24 25 29 public KeyException() { 30 super(); 31 } 32 33 40 public KeyException(String msg) { 41 super(msg); 42 } 43 44 55 public KeyException(String message, Throwable cause) { 56 super(message, cause); 57 } 58 59 70 public KeyException(Throwable cause) { 71 super(cause); 72 } 73 } 74 | Popular Tags |