1 7 8 package java.security.cert; 9 10 import java.security.GeneralSecurityException ; 11 12 18 public class CRLException extends GeneralSecurityException { 19 20 private static final long serialVersionUID = -6694728944094197147L; 21 22 27 public CRLException() { 28 super(); 29 } 30 31 38 public CRLException(String message) { 39 super(message); 40 } 41 42 53 public CRLException(String message, Throwable cause) { 54 super(message, cause); 55 } 56 57 68 public CRLException(Throwable cause) { 69 super(cause); 70 } 71 } 72 | Popular Tags |