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