RemoteSettingsError
public enum RemoteSettingsError : Swift.Error
extension RemoteSettingsError: Equatable, Hashable
extension RemoteSettingsError: Foundation.LocalizedError
Public error class, this is what we return to consumers
-
Network error while making a remote settings request
Declaration
Swift
case Network(reason: String ) -
The server has asked the client to backoff.
Declaration
Swift
case Backoff(seconds: UInt64 ) -
Declaration
Swift
case Other(reason: String ) -
Declaration
Swift
public var errorDescription: String? { get }