1 7 8 package java.security.cert; 9 10 import java.security.GeneralSecurityException ; 11 12 34 public class CertStoreException extends GeneralSecurityException { 35 36 private static final long serialVersionUID = 2395296107471573245L; 37 38 42 public CertStoreException() { 43 super(); 44 } 45 46 53 public CertStoreException(String msg) { 54 super(msg); 55 } 56 57 69 public CertStoreException(Throwable cause) { 70 super(cause); 71 } 72 73 82 public CertStoreException(String msg, Throwable cause) { 83 super(msg, cause); 84 } 85 86 } 87 | Popular Tags |