CreateCredentialException
open class CreateCredentialException : Exception
kotlin.Any | |||
↳ | kotlin.Throwable | ||
↳ | java.lang.Exception | ||
↳ | android.credentials.CreateCredentialException |
Represents an error encountered during the CredentialManager#createCredential(Context, CreateCredentialRequest,
operation.
Summary
Constants | |
---|---|
static String |
The error type value for when the given operation failed due to internal interruption. |
static String |
The error type value for when no create options are available from any provider(s), for the given |
static String |
The error type value for when the given operation failed due to an unknown reason. |
static String |
The error type value for when the user intentionally cancelled the request. |
Public constructors | |
---|---|
CreateCredentialException(type: String, message: String?) Constructs a |
|
CreateCredentialException(type: String, message: String?, cause: Throwable?) Constructs a |
|
CreateCredentialException(type: String, cause: Throwable?) Constructs a |
|
CreateCredentialException(type: String) Constructs a |
Public methods | |
---|---|
open String |
getType() Returns the specific exception type. |
Constants
TYPE_INTERRUPTED
static val TYPE_INTERRUPTED: String
The error type value for when the given operation failed due to internal interruption. Retrying the same operation should fix the error.
Value: "android.credentials.CreateCredentialException.TYPE_INTERRUPTED"
TYPE_NO_CREATE_OPTIONS
static val TYPE_NO_CREATE_OPTIONS: String
The error type value for when no create options are available from any provider(s), for the given CredentialManager#createCredential(Context, CreateCredentialRequest,
request.
Value: "android.credentials.CreateCredentialException.TYPE_NO_CREATE_OPTIONS"
TYPE_UNKNOWN
static val TYPE_UNKNOWN: String
The error type value for when the given operation failed due to an unknown reason.
Value: "android.credentials.CreateCredentialException.TYPE_UNKNOWN"
TYPE_USER_CANCELED
static val TYPE_USER_CANCELED: String
The error type value for when the user intentionally cancelled the request.
This is a strong indicator that your app should refrain from making the same api call for a certain amount of time to provide a better user experience.
Value: "android.credentials.CreateCredentialException.TYPE_USER_CANCELED"
Public constructors
CreateCredentialException
CreateCredentialException(
type: String,
message: String?)
Constructs a CreateCredentialException
.
Parameters | |
---|---|
type |
String: This value cannot be null . |
message |
String?: This value may be null . |
Exceptions | |
---|---|
java.lang.IllegalArgumentException |
If type is empty. |
CreateCredentialException
CreateCredentialException(
type: String,
message: String?,
cause: Throwable?)
Constructs a CreateCredentialException
.
Parameters | |
---|---|
type |
String: This value cannot be null . |
message |
String?: This value may be null . |
cause |
Throwable?: This value may be null . |
Exceptions | |
---|---|
java.lang.IllegalArgumentException |
If type is empty. |
CreateCredentialException
CreateCredentialException(
type: String,
cause: Throwable?)
Constructs a CreateCredentialException
.
Parameters | |
---|---|
type |
String: This value cannot be null . |
cause |
Throwable?: This value may be null . |
Exceptions | |
---|---|
java.lang.IllegalArgumentException |
If type is empty. |
CreateCredentialException
CreateCredentialException(type: String)
Constructs a CreateCredentialException
.
Parameters | |
---|---|
type |
String: This value cannot be null . |
Exceptions | |
---|---|
java.lang.IllegalArgumentException |
If type is empty. |
Public methods
getType
open fun getType(): String
Returns the specific exception type.
Return | |
---|---|
String |
This value cannot be null . |