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