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 | |||||
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 | |
|---|---|
UserNotAuthenticatedException() Constructs a new | |
UserNotAuthenticatedException(String message) Constructs a new | |
UserNotAuthenticatedException(String message, Throwable cause) Constructs a new | |
Inherited methods | |
|---|---|
Public constructors
UserNotAuthenticatedException
public UserNotAuthenticatedException ()
Constructs a new UserNotAuthenticatedException without detail message and cause.
UserNotAuthenticatedException
public UserNotAuthenticatedException (String message)
Constructs a new UserNotAuthenticatedException with the provided detail message and no cause.
| Parameters | |
|---|---|
message | String |
UserNotAuthenticatedException
public UserNotAuthenticatedException (String message, Throwable cause)
Constructs a new UserNotAuthenticatedException with the provided detail message and cause.
| Parameters | |
|---|---|
message | String |
cause | Throwable |