Constructors Summary |
---|
public InvalidKeyException(String msg)Constructs a new instance of {@code InvalidKeyException} with the given
message.
super(msg);
|
public InvalidKeyException()Constructs a new instance of {@code InvalidKeyException}.
|
public InvalidKeyException(String message, Throwable cause)Constructs a new instance of {@code InvalidKeyException} with the given
message and the cause.
super(message, cause);
|
public InvalidKeyException(Throwable cause)Constructs a new instance of {@code InvalidKeyException} with the cause.
super(cause);
|