PasscodeSetupError

public enum PasscodeSetupError : SAPError

Represents the different errors that can occur during passcode setup or modification.

  • Indicates that a passcode already exists when attempting to set a new one.

    Declaration

    Swift

    case passcodeExists
  • Indicates that no passcode currently exists when one is required for the operation.

    Declaration

    Swift

    case noPasscodeExists
  • Indicates the application is not in desired state for operation.

    Declaration

    Swift

    case internalFailure
  • Wraps an error originating from another SDK module.

    Declaration

    Swift

    case other(Error)
  • A human-readable description of the error.

    Declaration

    Swift

    public var description: String { get }
  • A localized message describing the debug information.

    Declaration

    Swift

    public var debugDescription: String { get }
  • A localized message describing what error occurred.

    Declaration

    Swift

    public var errorDescription: String? { get }
  • A localized message describing the reason for the failure.

    Declaration

    Swift

    public var failureReason: String? { get }