OperationErrorType

@objc
public enum OperationErrorType : Int

The possible error types can occur during registration or deregistration.

  • An error that occurs with username-less out-of-band authentication. If the username of a registered account is provided to the NMAAccountSelectionHandler, but the user is not defined in the server where the token was redeemed.

    Declaration

    Swift

    case UserNotRegisteredInServer
  • An error that occurs during registration. When try to register a new authenticator in a server for a given username, but there is another authenticator already registered in another server for the same username.

    Important

    A username can only be defined in one server.

    Declaration

    Swift

    case UserAlreadyRegisteredInAnotherServer
  • A network error occurred while redeeming the token: either the server was not reachable or it returned an HTTP error.

    Declaration

    Swift

    case NetworkError
  • A FIDO UAF error occurred.

    Declaration

    Swift

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

    Requires

    iOS platform

    Declaration

    Swift

    case Unknown