Most visited

Recently visited

Added in API level 23

UserNotAuthenticatedException

public class UserNotAuthenticatedException
extends InvalidKeyException

java.lang.Object
    java.lang.Throwable
      java.lang.Exception
        java.security.GeneralSecurityException
          java.security.KeyException
            java.security.InvalidKeyException
              android.security.keystore.UserNotAuthenticatedException


表示由于用户最近未经过身份验证,因此无法执行加密操作。 验证用户将解决此问题。

摘要(Summary)

Public constructors

UserNotAuthenticatedException()

构造一个新的 UserNotAuthenticatedException但不包含详细信息和原因。

UserNotAuthenticatedException(String message)

使用所提供的详细信息构造一个新的 UserNotAuthenticatedException ,但没有任何原因。

UserNotAuthenticatedException(String message, Throwable cause)

用提供的详细信息和原因构造一个新的 UserNotAuthenticatedException

继承方法(Inherited methods)

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

Public constructors

UserNotAuthenticatedException

Added in API level 23
UserNotAuthenticatedException ()

构造一个新的 UserNotAuthenticatedException没有详细信息和原因。

UserNotAuthenticatedException

Added in API level 23
UserNotAuthenticatedException (String message)

用提供的详细信息构造一个新的 UserNotAuthenticatedException ,没有任何原因。

参数(Parameters)
message String

UserNotAuthenticatedException

Added in API level 23
UserNotAuthenticatedException (String message, 
                Throwable cause)

用提供的详细信息和原因构造一个新的 UserNotAuthenticatedException

参数(Parameters)
message String
cause Throwable

Hooray!