HTTPClientError
public enum HTTPClientError : Swift.Error, Equatable, LocalizedError
HTTP Error
-
Internal error in the request/chain handling
Declaration
Swift
case internalError(String) -
The server responded with an error
Declaration
Swift
case httpError(URLError) -
The connection to the server has gone bad
Declaration
Swift
case networkError(String) -
Authentication error
Declaration
Swift
case authentication(Swift.Error) -
Error emitted by the VAU client
Declaration
Swift
case vauError(Swift.Error) -
Unclassified error
Declaration
Swift
case unknown(Swift.Error) -
Declaration
Swift
public static func == (lhs: HTTPClientError, rhs: HTTPClientError) -> Bool -
Declaration
Swift
public var errorDescription: String? { get }
View on GitHub
HTTPClientError Enumeration Reference