InitializationError

public enum InitializationError : MobileAuthenticationClientError
extension InitializationError: LocalizedError

Collection of MobileAuthenticationClient initialization error codes.

  • An error that indicates that some form of tampering was found in the application.

    Declaration

    Swift

    case DeviceProtectionError
  • The iOS device has no passcode set.

    Declaration

    Swift

    case NoDeviceLockError
  • 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 }