Most visited

Recently visited

Added in API level 14

KeyChainException

public class KeyChainException
extends 异常

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ android.security.KeyChainException


抛出访问 KeyChain问题。

Summary

Public constructors

KeyChainException()

构造一个包含当前堆栈跟踪的新的 KeyChainException

KeyChainException(String detailMessage)

使用当前堆栈跟踪和指定的详细消息构造一个新的 KeyChainException

KeyChainException(String message, Throwable cause)

使用当前堆栈跟踪,指定的详细消息和指定的原因构造一个新的 KeyChainException

KeyChainException(Throwable cause)

使用当前堆栈跟踪和指定的原因构造一个新的 KeyChainException

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Public constructors

KeyChainException

Added in API level 14
KeyChainException ()

构造一个包含当前堆栈跟踪的新的 KeyChainException

KeyChainException

Added in API level 14
KeyChainException (String detailMessage)

使用当前堆栈跟踪和指定的详细消息构造一个新的 KeyChainException

Parameters
detailMessage String: the detail message for this exception.

KeyChainException

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

使用当前堆栈跟踪,指定的详细消息和指定的原因构造一个新的 KeyChainException

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 (Throwable cause)

使用当前堆栈跟踪和指定的原因构造一个新的 KeyChainException

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

Hooray!