UnrecoverableKeyExceptionpublic class UnrecoverableKeyException extends UnrecoverableEntryException This exception is thrown if a key in the keystore cannot be recovered. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public UnrecoverableKeyException()Constructs an UnrecoverableKeyException with no detail message.
super();
| public UnrecoverableKeyException(String msg)Constructs an UnrecoverableKeyException with the specified detail
message, which provides more information about why this exception
has been thrown.
super(msg);
|
|