DarkMatterErrorCode
@objc public enum DarkMatterErrorCode: Int
Error codes for DarkMatter errors.
-
No error.
Declaration
Swift
case NoError = 0
-
The library has not be initialized.
Declaration
Swift
case Uninitialized
-
Dark Matter requires a running instance of Hive manager in order to initialize.
Declaration
Swift
case MissingHiveInstance
-
The library has already been initialized.
Declaration
Swift
case AlreadyInitialized
-
One or more library dependencies are null.
Declaration
Swift
case DependenciesNull
-
One or more library dependencies have not been initialized.
Declaration
Swift
case DependenciesUninitialized
-
This feature has not yet been implemented.
Declaration
Swift
case NotImplemented
-
The GameService library node is missing from the manifest.
Declaration
Swift
case InitNewUserManifestNodeMissing
-
There was no manifest found for the given game / platfrom / version.
Declaration
Swift
case ManifestNotFound
-
A manifest update check is already in progress.
Declaration
Swift
case AlreadyCheckingForUpdate
-
An error was encountered trying to get the manifest.
Declaration
Swift
case FailedToGetManifest
-
The library was unable to handle the game server manifest response.
Declaration
Swift
case UnableToHandleManifestResponse
-
Missing required keys in JSON response.
Declaration
Swift
case ManifestResponseMissingKeys
-
There is currently no network connection. Please check your network setting and try again.
Declaration
Swift
case NoNetworkConnectivity
-
The current game service configuration is invalid.
Declaration
Swift
case ConfigInvalid
-
An error was encountered trying to get the manifest.
Declaration
Swift
case SessionInvalid
-
The library was unable to handle the game server manifest response.
Declaration
Swift
case LibraryThrottlingReqeust
-
Undocumented
Declaration
Swift
case NetworkRequestError
-
Undocumented
Declaration
Swift
case InvalidInput
-
Undocumented
Declaration
Swift
case ThirdPartyNotSupported
-
Undocumented
Declaration
Swift
case InvalidTournamentId
-
Undocumented
Declaration
Swift
case InvalidMCSKey
-
Undocumented
Declaration
Swift
case InvalidMCSBuildId
-
Undocumented
Declaration
Swift
case InvalidUserSessionToken
-
Undocumented
Declaration
Swift
case InvalidMCSSignature
-
Undocumented
Declaration
Swift
case InvalidThirdPartyToken
-
Undocumented
Declaration
Swift
case InvalidUserCredentials
-
Undocumented
Declaration
Swift
case InvalidMCSInstallId
-
Undocumented
Declaration
Swift
case InvalidJSONResponse
-
An account already exists for the provided facebook account.
Declaration
Swift
case AccountMergeConflict
-
Undocumented
Declaration
Swift
case InvalidMCSTimestamp
-
Undocumented
Declaration
Swift
case AccessProhibited
-
Undocumented
Declaration
Swift
case DatabaseError
-
An undefined error has occurred.
Declaration
Swift
case Undefined = -1
-
A textual description of the enum case.
Declaration
Swift
public var description: String
DarkMatterErrorCode Enumeration Reference