FileDocCategorySizeDatePackage
UnrecoverableEntryException.javaAPI DocAndroid 1.5 API1732Wed May 06 22:41:06 BST 2009java.security

UnrecoverableEntryException

public class UnrecoverableEntryException extends GeneralSecurityException
{@code UnrecoverableEntryException} indicates, that a {@code KeyStore.Entry} cannot be recovered from a {@code KeyStore}.
see
KeyStore
see
KeyStore.Entry
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public UnrecoverableEntryException()
Constructs a new instance of {@code UnrecoverableEntryException}.

since
Android 1.0


                    
      
    
public UnrecoverableEntryException(String msg)
Constructs a new instance of {@code UnrecoverableEntryException} with the given message.

param
msg the detail message for this exception.
since
Android 1.0

        super(msg);
    
Methods Summary