Added in API level 14

KeyChainException

open class KeyChainException : Exception
kotlin.Any
   ↳ kotlin.Throwable
   ↳ java.lang.Exception
   ↳ android.security.KeyChainException

Thrown on problems accessing the KeyChain.

Summary

Public constructors

Constructs a new KeyChainException that includes the current stack trace.

KeyChainException(detailMessage: String!)

Constructs a new KeyChainException with the current stack trace and the specified detail message.

KeyChainException(message: String!, cause: Throwable!)

Constructs a new KeyChainException with the current stack trace, the specified detail message and the specified cause.

Constructs a new KeyChainException with the current stack trace and the specified cause.

Public constructors

KeyChainException

Added in API level 14
KeyChainException()

Constructs a new KeyChainException that includes the current stack trace.

KeyChainException

Added in API level 14
KeyChainException(detailMessage: String!)

Constructs a new KeyChainException with the current stack trace and the specified detail message.

Parameters
detailMessage String!: the detail message for this exception.

KeyChainException

Added in API level 14
KeyChainException(
    message: String!,
    cause: Throwable!)

Constructs a new KeyChainException with the current stack trace, the specified detail message and the specified cause.

Parameters
message String!: the detail message for this exception.
cause Throwable!: the cause of this exception, may be null.

KeyChainException

Added in API level 14
KeyChainException(cause: Throwable!)

Constructs a new KeyChainException with the current stack trace and the specified cause.

Parameters
cause Throwable!: the cause of this exception, may be null.