NetworkError

public enum NetworkError : Int, Error

Generic network error thrown by URLSession

Version

1.0.0

Date

19/11/22

Author

Adamas
  • NSURLErrorNotConnectedToInternet

    Declaration

    Swift

    case connection = -1009
  • NSURLErrorTimedOut

    Declaration

    Swift

    case timeout = -1001
  • Undocumented

    Declaration

    Swift

    case other = 0
  • Convert an error returned by the URLSession into a NetworkError.

    Declaration

    Swift

    public init(error: Error)

    Parameters

    code

    The returned error.