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
  • 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
  • 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 InvalidInput
  • Undocumented

    Declaration

    Swift

    case InvalidMCSKey
  • An account already exists for the provided facebook account.

    Declaration

    Swift

    case AccountMergeConflict
  • 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