DeleteAuthenticatorError

public enum DeleteAuthenticatorError : MobileAuthenticationClientError
extension DeleteAuthenticatorError: LocalizedError

The error which is thrown by deleteAuthenticator(username:aaid:) in case of any error occurs. For instance if the provided AAID is not known, or if an error occurred during deleting the associated FIDO UAF credentials.

Requires

iOS platform
  • Invalid AAID were provided during authenticator deletion.

    Declaration

    Swift

    case InvalidAaid
  • Unknown error, handling not categorized error cases.

    Requires

    iOS platform

    Declaration

    Swift

    case Unknown(message: String? = nil, cause: Error? = nil)

    Parameters

    message

    Additional information about the error.

    cause

    The underlying error that is related to the error occurred.

Localized descriptions

  • A message describing what error occurred.

    Declaration

    Swift

    public var errorDescription: String? { get }