AttestationError

public enum AttestationError : Swift.Error, SAPError

The errors thrown during Application attestation and assertion

  • indicates a failure has happened during the attestation phase

    Declaration

    Swift

    case attestationFailure(String)
  • indicates a failure has happened during the assertion phase

    Declaration

    Swift

    case assertionFailure(String)
  • indicates failure when reading attestation token fails

    Declaration

    Swift

    case attestationTokenFailure(String)
  • indicates failure when a requirement to use a debug token is not fulfilled

    Declaration

    Swift

    case debugTokenPreconditionFailed(String)
  • A string value with the details of the error

    Declaration

    Swift

    public var description: String { get }
  • A string value with the details of the error

    Declaration

    Swift

    public var debugDescription: String { get }
  • A string value with the details of the error

    Declaration

    Swift

    public var errorDescription: String? { get }