MerinoSuggestApiError

public enum MerinoSuggestApiError : Swift.Error, Equatable, Hashable, Codable, Foundation.LocalizedError
extension MerinoSuggestApiError: Sendable
  • A network-level failure.

    Declaration

    Swift

    case Network(reason: String
    )
  • Any other error, e.g. HTTP errors, validation errors.

    Declaration

    Swift

    case Other(code: UInt16?, reason: String
    )
  • Declaration

    Swift

    public var errorDescription: String? { get }