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