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