FileDocCategorySizeDatePackage
KeyChainException.javaAPI DocAndroid 5.1 API2008Thu Mar 12 22:22:30 GMT 2015android.security

KeyChainException

public class KeyChainException extends Exception
Thrown on problems accessing the {@link KeyChain}.

Fields Summary
Constructors Summary
public KeyChainException()
Constructs a new {@code KeyChainException} that includes the current stack trace.

    
public KeyChainException(String detailMessage)
Constructs a new {@code KeyChainException} with the current stack trace and the specified detail message.

param
detailMessage the detail message for this exception.

        super(detailMessage);
    
public KeyChainException(String message, Throwable cause)
Constructs a new {@code KeyChainException} with the current stack trace, the specified detail message and the specified cause.

param
message the detail message for this exception.
param
cause the cause of this exception, may be {@code null}.

        super(message, cause);
    
public KeyChainException(Throwable cause)
Constructs a new {@code KeyChainException} with the current stack trace and the specified cause.

param
cause the cause of this exception, may be {@code null}.

        super((cause == null ? null : cause.toString()), cause);
    
Methods Summary