UnrecoverableKeyException | java.security |
Java 1.2 | serializable checked |
This
exception is thrown if a Key cannot be retrieved
from a KeyStore. This commonly occurs when an
incorrect password is used.

public class UnrecoverableKeyException extends GeneralSecurityException {
// Public Constructors
public UnrecoverableKeyException( );
public UnrecoverableKeyException(String msg);
}
Thrown By
KeyStore.getKey( ),
KeyStoreSpi.engineGetKey( ),
javax.net.ssl.KeyManagerFactory.init( ),
javax.net.ssl.KeyManagerFactorySpi.engineInit( )
|