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