1 7 8 package java.security; 9 10 16 17 public class SignatureException extends GeneralSecurityException { 18 19 private static final long serialVersionUID = 7509989324975124438L; 20 21 26 public SignatureException() { 27 super(); 28 } 29 30 37 public SignatureException(String msg) { 38 super(msg); 39 } 40 41 52 public SignatureException(String message, Throwable cause) { 53 super(message, cause); 54 } 55 56 67 public SignatureException(Throwable cause) { 68 super(cause); 69 } 70 } 71 | Popular Tags |