Constructors Summary |
---|
public InvalidKeySpecException(String msg)Creates a new {@code InvalidKeySpecException} with the specified message.
super(msg);
|
public InvalidKeySpecException()Creates a new {@code InvalidKeySpecException}.
|
public InvalidKeySpecException(String message, Throwable cause)Creates a new {@code InvalidKeySpecException} with the specified message
and cause.
super(message, cause);
|
public InvalidKeySpecException(Throwable cause)Creates a new {@code InvalidKeySpecException} with the specified cause.
super(cause);
|