FeedbackUploadError

public enum FeedbackUploadError : SAPError

Collection of possible errors that could occur during the upload.

  • network related error

    Declaration

    Swift

    case network(Error)
  • response / service related error

    Declaration

    Swift

    case invalidResponse(Data?, URLResponse?)
  • Failed to create feedback report for upload.

    Declaration

    Swift

    case reportGenerationFailed
  • A textual representation of this instance.

    Declaration

    Swift

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

    Declaration

    Swift

    public var errorDescription: String? { get }
  • A textual representation of this instance, suitable for debugging.

    Declaration

    Swift

    public var debugDescription: String { get }