AuthenticationError
public enum AuthenticationError : LocalizedError, CustomNSError
Possible Authentication related errors
-
Invalid account key
Declaration
Swift
case invalidAccountKey(String)
-
Invalid access token
Declaration
Swift
case invalidAccessToken(String)
-
Invalid email
Declaration
Swift
case invalidEmail(String)
-
Invalid name
Declaration
Swift
case invalidName(String)
-
Invalid shared secret was used to generate the JWT
Declaration
Swift
case invalidSharedSecret(String)
-
Access token has expired
Declaration
Swift
case tokenHasExpired(String)
-
External user id has changed
Declaration
Swift
case externalUserIdHasChanged(String)
-
Internal server error
Declaration
Swift
case internalServerError
-
Internal Error
Declaration
Swift
case internalError
-
Network error
Declaration
Swift
case networkError(Error)
-
Declaration
Swift
public var errorUserInfo: [String : Any] { get }
-
Declaration
Swift
public var errorDescription: String? { get }
-
Declaration
Swift
public var errorCode: Int { get }