ConfigFetcherError
public enum ConfigFetcherError : Error
Varioqub error that occurs when it tries to fetch the config.
-
The server returns an empty response.
Declaration
Swift
case emptyResult
-
fetchIdentifiers(completion:)
returns an error.Declaration
Swift
case nullIdentifiers
-
The request data can’t be serialized into binary data.
Declaration
Swift
case request
-
The server returns an error.
Declaration
Swift
case response(Error)
Parameters
_
The underlying error that causes the server error.
-
The response can’t be deserialized.
Declaration
Swift
case parse(Error)
Parameters
_
The underlying error that causes the parse error.
-
The network error with details.
Declaration
Swift
case network(Error)
Parameters
_
The underlying error that causes the network error.
-
Some other error with details.
Declaration
Swift
case underlying(Error)
Parameters
_
The underlying error.