LoginError
public enum LoginError: Error, Equatable
Error thrown from login service
-
Error domain
Declaration
Swift
public func domain() -> String
-
Internet connection could be established
Declaration
Swift
case connectionError
-
Request is invalid
Declaration
Swift
case requestError(errorCode: Int)
-
Malformed response
Declaration
Swift
case parseError
-
Invalid identity and/or access key
Declaration
Swift
case invalidCredentials
-
Identity is connected to another provider
Declaration
Swift
case identityExistsForOtherProvider
-
Unknown error
Declaration
Swift
case notHandled