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(detailMessage: String!) Constructs a new |
|
KeyChainException(message: String!, cause: Throwable!) Constructs a new |
|
KeyChainException(cause: Throwable!) Constructs a new |
Public constructors
KeyChainException
KeyChainException()
Constructs a new KeyChainException
that includes the current stack trace.
KeyChainException
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
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
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 . |