1 7 8 package java.security.spec; 9 10 import java.security.GeneralSecurityException ; 11 12 23 24 public class InvalidKeySpecException extends GeneralSecurityException { 25 26 private static final long serialVersionUID = 3546139293998810778L; 27 28 33 public InvalidKeySpecException() { 34 super(); 35 } 36 37 44 public InvalidKeySpecException(String msg) { 45 super(msg); 46 } 47 48 59 public InvalidKeySpecException(String message, Throwable cause) { 60 super(message, cause); 61 } 62 63 74 public InvalidKeySpecException(Throwable cause) { 75 super(cause); 76 } 77 } 78 | Popular Tags |