GameServiceErrorCode

@objc public enum GameServiceErrorCode: Int

Error codes for GameServiceError.

  • The gameService node in the manifest is missing or invalid.

    Declaration

    Swift

    case MANIFEST_INVALID = 1000
  • The default configuration provided is invalid.

    Declaration

    Swift

    case DEFAULT_CONFIG_INVALID
  • The game service configuration setup in the manifest is invalid or has invalid parameters.

    Declaration

    Swift

    case ACTIVECONFIG_INVALID_MANIFEST
  • The default game service configurations passed into initialize is invalid.

    Declaration

    Swift

    case ACTIVECONFIG_INVALID_DEFAULT
  • The url provided is null or empty.

    Declaration

    Swift

    case URL_INVALID
  • Game Service failed to identify with the server.

    Declaration

    Swift

    case FAILED_TO_IDENTIFY
  • Too many configurations have been detected on initialization. Check your game service configurations to ensure at most one configuration change at launch.

    Declaration

    Swift

    case CONFIGURATION_CHANGED_ISSUE
  • Only set the install id if you’re migrating to DarkMatter from an older game server implementation. Otherwise the library will handle the installId.

    Declaration

    Swift

    case INSTALLID_ALREADY_SET
  • A textual description of the enum case.

    Declaration

    Swift

    public var description: String