Added in API level 23

UserNotAuthenticatedException

open class UserNotAuthenticatedException : InvalidKeyException
kotlin.Any
   ↳ kotlin.Throwable
   ↳ java.lang.Exception
   ↳ java.security.GeneralSecurityException
   ↳ java.security.KeyException
   ↳ java.security.InvalidKeyException
   ↳ android.security.keystore.UserNotAuthenticatedException

Indicates that a cryptographic operation could not be performed because the user has not been authenticated recently enough. Authenticating the user will resolve this issue.

Summary

Public constructors

Constructs a new UserNotAuthenticatedException without detail message and cause.

Constructs a new UserNotAuthenticatedException with the provided detail message and no cause.

Constructs a new UserNotAuthenticatedException with the provided detail message and cause.

Public constructors

UserNotAuthenticatedException

Added in API level 23
UserNotAuthenticatedException()

Constructs a new UserNotAuthenticatedException without detail message and cause.

UserNotAuthenticatedException

Added in API level 23
UserNotAuthenticatedException(message: String!)

Constructs a new UserNotAuthenticatedException with the provided detail message and no cause.

UserNotAuthenticatedException

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

Constructs a new UserNotAuthenticatedException with the provided detail message and cause.