Error Handling
When you develop for EOS you might see errors reported by different interfaces. The table below has some common error codes, their cause and their solution:-
Numeric Error Code | Error Code/String Code | Error Message | Documentation | Cause | Solution(s) |
---|---|---|---|---|---|
300 | errors.com.epicgames.common.policy_missing_action | Failed to unlock achievements | Client Credentials | Client Policy missing permission | Add missing policy to Client Policy on the Developer Portal in Product Settings -> Clients tab. |
401 | errors.com.epicgames.eos.auth.client_not_found | Client not found: [id] | Client not configured | Configure Client in Developer Portal Clients. | |
1003 | errors.com.epicgames.forbidden | (ECOM Context) Not allowed to access resource belonging to account xxxxxxxxxx | auth user doesn't match the userid being queried | ||
1011 | errors.com.epicgames.common.oauth.invalid_client | Invalid Client: 'XXXXXXXXXXXXXX' | Agreements | Unaccepted agreement/Wrong client ID | This error occurs when the new agreement hasn't been accepted - the Organization owner would need to accept this on the Developer Portal. If this has been done - check if using the correct Client ID/Secret and make sure they are the EOS SDK credentials. |
1012 | errors.com.epicgames.bad_request | The client is not configured correctly. Please make sure it is associated with an Application. | Check that EAS setup has been completed | Client not configured with Application. Likely cause: Org owner has not accepted EAS agreement and proceeded to this point, or linked the client to the EAS config. | |
1012 | errors.com.epicgames.common.oauth.invalid_grant | invalid_grant | Auth Interface | Wrong auth type (email/password) | |
1012 | errors.com.epicgames.oauth.account_forbidden | Account cannot access deployment 'XXXXXXXXXX' | Product Management | Private sandbox | The sandbox should be public for EGS partners. |
1012 | errors.com.epicgames.server_error | Error listing oauth scopes | Internal Epic error | ||
1023 | errors.com.epicgames.common.missing_permission | Sorry your login does not possess the permissions 'egp:account:token:otherSessionsForAccountClientService DELETE' needed to perform the requested operation | What's New | New clients created after 1.5 SDK didn't include this permission by default. This happens when older SDKS (1.4 and earlier) are using 1.5 clients. | For 1.4 or earlier, add permission. For 1.5 or later, a fix is underway on Epic's side. |
1023 | errors.com.epicgames.common.missing_permission | Sorry your login does not posses the permissions 'egp:account:public:account READ' needed to perform the requested operation | What's New | New clients created after 1.5 SDK didn't include this permission by default. This happens when older SDKS (1.4 and earlier) are using 1.5 clients.t | For 1.4 or earlier, add permission. For 1.5 or later, a fix is underway on Epic's side. |
1040 | errors.com.epicgames.validation.validation_failed | Validation Failed. Invalid Fields were [LineOffers] | Offers (DLC/Add-Ons) not found or valid | Either the offers setup for enumeration and validation were set to not discoverable or do not exist under the product in question. Coordinate with your Service Delivery manager to verify they exist under the correct product and are configured correctly. | |
18603 | errors.com.epicgames.account.external_auth_validate_failed | Failed to verify token for authType: steam_encrypted_appticket and sandboxId: XXX, error: Sandbox credentials not found for sandboxId: xxxxxxxxxxx identityProvider: steam | Identity Provider Management | Steam has not been configured as an identity provider and added to the sandbox | Make sure the Identity provider is configured for the product with the valid encryption key, and added to the actual Sandbox in Developer Portal Environments -> Sandbox -> Identity Providers -> Steam. |
18603 | errors.com.epicgames.account.external_auth_validate_failed | The Encryption Key entered in the dev portal does not match Steamworks | Ensure that the Steam Encryption Key in your Steamworks dashboard matches with the one added in EOS Dev Portal. Check that the change has been published in Steamworks as there is a case of inputting/generating a new key and not publishing which means the keys are misaligned. | ||
46022 | errors.com.epicgames.ecommerce.integration.client_restricted | You’re not allowed to access this resource, please contact the identity support team. | Epic Account Services | Omitted Deployment ID from token request | Make sure deployment_id=foo is included in the POST https://api.epicgames.dev/epic/oauth/v1/token request. |
58005 | errors.com.epicgames.oauth.scope_consent_required | The user has not consented to required scopes. | Developer Portal | Mismatch between SDK request and Client features | SDK needs to be initialized with the same scopes as EOS Client on Dev Portal. Fix client code and/or Dev Portal to match. |
110016 | errors.com.epicgames.eos.auth.user_not_found | EOS User Identity not found | Connect Interface | User account has not been registered with EOS | Register user with EOS. |
Error Results
Error codes from EOS SDK functions use the type EOS_EResult
. This type includes both common error values and errors specific to a single interface. Common errors take the form EOS_<ErrorCode>
, while interface-specific error codes appear as EOS_<Interface>_<ErrorCode>
.
For example: EOS_Initialize
returns an EOS_EResult
to indicate success or failure. The value will be EOS_Success
if the SDK has been initialized successfully, otherwise, the value will indicate an error, such as EOS_AlreadyConfigured
.
Numeric Code | Code Return | Cause/Reason |
---|---|---|
0 | EOS_Success | /** Successful result. no further error processing needed */ |
1 | EOS_NoConnection | /** Failed due to no connection */ |
2 | EOS_InvalidCredentials | /** Failed login due to invalid credentials */ |
3 | EOS_InvalidUser | /** Failed due to invalid or missing user */ |
4 | EOS_InvalidAuth | /** Failed due to invalid or missing authentication token for user e.g. not logged in */ |
5 | EOS_AccessDenied | /** Failed due to invalid access */ |
6 | EOS_MissingPermissions | /** If the client does not possess the permission required */ |
7 | EOS_Token_Not_Account | /** If the token provided does not represent an account */ |
8 | EOS_TooManyRequests | /** Throttled due to too many requests */ |
9 | EOS_AlreadyPending | /** Async request was already pending */ |
10 | EOS_InvalidParameters | /** Invalid parameters specified for request */ |
11 | EOS_InvalidRequest | /** Invalid request */ |
12 | EOS_UnrecognizedResponse | /** Failed due to unable to parse or recognize a backend response */ |
13 | EOS_IncompatibleVersion | /** Incompatible client for backend version */ |
14 | EOS_NotConfigured | /** Not configured correctly for use */ |
15 | EOS_AlreadyConfigured | /** Already configured for use. */ |
16 | EOS_NotImplemented | /** Feature not available on this implementation */ |
17 | EOS_Canceled | /** Operation was canceled likely by user */ |
18 | EOS_NotFound | /** The requested information was not found */ |
19 | EOS_OperationWillRetry | /** An error occurred during an asynchronous operation, and it will be retried. Callbacks receiving this result will be called again in the future. */ |
20 | EOS_NoChange | /** The request had no effect */ |
21 | EOS_VersionMismatch | /** The request attempted to use multiple or inconsistent API versions */ |
22 | EOS_LimitExceeded | /** A maximum limit was exceeded on the client, different from `EOS_TooManyRequests */ |
23 | EOS_Disabled | /** Feature or client ID performing the operation has been disabled. */ |
24 | EOS_DuplicateNotAllowed | /** Duplicate entry not allowed */ |
25 | EOS_MissingParameters_DEPRECATED | /** Required parameters are missing. DEPRECATED: This error is no longer used. */ |
26 | EOS_InvalidSandboxId | /** Sandbox ID is invalid */ |
27 | EOS_TimedOut | /** Request timed out */ |
28 | EOS_PartialResult | /** A query returned some but not all of the requested results. */ |
29 | EOS_Missing_Role | /** Client is missing the whitelisted role */ |
30 | EOS_Missing_Feature | /** Client is missing the whitelisted feature */ |
31 | EOS_Invalid_Sandbox | /** The sandbox given to the backend is invalid */ |
32 | EOS_Invalid_Deployment | /** The deployment given to the backend is invalid */ |
33 | EOS_Invalid_Product | /** The product ID specified to the backend is invalid */ |
34 | EOS_Invalid_ProductUserID | /** The product user ID specified to the backend is invalid */ |
35 | EOS_ServiceFailure | /** There was a failure with the backend service */ |
36 | EOS_CacheDirectoryMissing | /** Cache directory is not set in platform options. */ |
37 | EOS_CacheDirectoryInvalid | /** Cache directory is not accessible. */ |
38 | EOS_InvalidState | /** The request failed because resource was in an invalid state */ |
39 | EOS_RequestInProgress | /** Request is in progress */ |
1001 | EOS_Auth_AccountLocked | /** Account locked due to login failures */ |
1002 | EOS_Auth_AccountLockedForUpdate | /** Account locked by update operation. */ |
1003 | EOS_Auth_InvalidRefreshToken | /** Refresh token used was invalid */ |
1004 | EOS_Auth_InvalidToken | /** Invalid access token, typically when switching between backend environments */ |
1005 | EOS_Auth_AuthenticationFailure | /** Invalid bearer token */ |
1006 | EOS_Auth_InvalidPlatformToken | /** Invalid platform token */ |
1007 | EOS_Auth_WrongAccount | /** Auth parameters are not associated with this account */ |
1008 | EOS_Auth_WrongClient | /** Auth parameters are not associated with this client */ |
1009 | EOS_Auth_FullAccountRequired | /** Full account is required */ |
1010 | EOS_Auth_HeadlessAccountRequired | /** Headless account is required */ |
1011 | EOS_Auth_PasswordResetRequired | /** Password reset is required */ |
1012 | EOS_Auth_PasswordCannotBeReused | /** Password was previously used and cannot be reused */ |
1013 | EOS_Auth_Expired | /** Authorization code/exchange code has expired */ |
1014 | EOS_Auth_ScopeConsentRequired | /** Consent has not been given by the user */ |
1015 | EOS_Auth_ApplicationNotFound | /** The application has no profile on the backend */ |
1016 | EOS_Auth_ScopeNotFound | /** The requested consent wasn't found on the backend */ |
1017 | EOS_Auth_AccountFeatureRestricted | /** This account has been denied access to login */ |
1020 | EOS_Auth_PinGrantCode | /** Pin grant code initiated */ |
1021 | EOS_Auth_PinGrantExpired | /** Pin grant code attempt expired */ |
1022 | EOS_Auth_PinGrantPending | /** Pin grant code attempt pending */ |
1030 | EOS_Auth_ExternalAuthNotLinked | /** External auth source did not yield an account */ |
1032 | EOS_Auth_ExternalAuthRevoked | /** External auth access revoked */ |
1033 | EOS_Auth_ExternalAuthInvalid | /** External auth token cannot be interpreted */ |
1034 | EOS_Auth_ExternalAuthRestricted | /** External auth cannot be linked to his account due to restrictions */ |
1035 | EOS_Auth_ExternalAuthCannotLogin | /** External auth cannot be used for login */ |
1036 | EOS_Auth_ExternalAuthExpired | /** External auth is expired */ |
1037 | EOS_Auth_ExternalAuthIsLastLoginType | /** External auth cannot be removed since it's the last possible way to login */ |
1040 | EOS_Auth_ExchangeCodeNotFound | /** Exchange code not found */ |
1041 | EOS_Auth_OriginatingExchangeCodeSessionExpired | /** Originating exchange code session has expired */ |
1050 | EOS_Auth_PersistentAuth_AccountNotActive | /** The account has been disabled and cannot be used for authentication */ |
1060 | EOS_Auth_MFARequired | /** MFA challenge required */ |
1070 | EOS_Auth_ParentalControls | /** Parental locks are in place */ |
1080 | EOS_Auth_NoRealId | /** Korea real ID association required but missing */ |
2000 | EOS_Friends_InviteAwaitingAcceptance | /** An outgoing friend invitation is awaiting acceptance; sending another invite to the same user is erroneous */ |
2001 | EOS_Friends_NoInvitation | /** There is no friend invitation to accept/reject */ |
2003 | EOS_Friends_AlreadyFriends | /** Users are already friends, so sending another invite is erroneous */ |
2004 | EOS_Friends_NotFriends | /** Users are not friends, so deleting the friend is erroneous */ |
2005 | EOS_Friends_TargetUserTooManyInvites | /** Remote user has too many invites to receive new invites */ |
2006 | EOS_Friends_LocalUserTooManyInvites | /** Local user has too many invites to send new invites */ |
2007 | EOS_Friends_TargetUserFriendLimitExceeded | /** Remote user has too many friends to make a new friendship */ |
2008 | EOS_Friends_LocalUserFriendLimitExceeded | /** Local user has too many friends to make a new friendship */ |
3000 | EOS_Presence_DataInvalid | /** Request data was null or invalid */ |
3001 | EOS_Presence_DataLengthInvalid | /** Request contained too many or too few unique data items, or the request would overflow the maximum amount of data allowed */ |
3002 | EOS_Presence_DataKeyInvalid | /** Request contained data with an invalid key */ |
3003 | EOS_Presence_DataKeyLengthInvalid | /** Request contained data with a key too long or too short */ |
3004 | EOS_Presence_DataValueInvalid | /** Request contained data with an invalid value */ |
3005 | EOS_Presence_DataValueLengthInvalid | /** Request contained data with a value too long */ |
3006 | EOS_Presence_RichTextInvalid | /** Request contained an invalid rich text string */ |
3007 | EOS_Presence_RichTextLengthInvalid | /** Request contained a rich text string that was too long */ |
3008 | EOS_Presence_StatusInvalid | /** Request contained an invalid status state */ |
4000 | EOS_Ecom_EntitlementStale | /** The entitlement retrieved is stale, requery for updated information */ |
4001 | EOS_Ecom_CatalogOfferStale | /** The offer retrieved is stale, requery for updated information */ |
4002 | EOS_Ecom_CatalogItemStale | /** The item or associated structure retrieved is stale |
4003 | EOS_Ecom_CatalogOfferPriceInvalid | /** The one or more offers have an invalid price. This may be caused by the price setup. */ |
4004 | EOS_Ecom_CheckoutLoadError | /** The checkout page failed to load */ |
5000 | EOS_Sessions_SessionInProgress | /** Session is already in progress */ |
5001 | EOS_Sessions_TooManyPlayers | /** Too many players to register with this session */ |
5002 | EOS_Sessions_NoPermission | /** Client has no permissions to access this session */ |
5003 | EOS_Sessions_SessionAlreadyExists | /** Session already exists in the system */ |
5004 | EOS_Sessions_InvalidLock | /** Session lock required for operation */ |
5005 | EOS_Sessions_InvalidSession | /** Invalid session reference */ |
5006 | EOS_Sessions_SandboxNotAllowed | /** Sandbox ID associated with auth didn't match */ |
5007 | EOS_Sessions_InviteFailed | /** Invite failed to send */ |
5008 | EOS_Sessions_InviteNotFound | /** Invite was not found with the service */ |
5009 | EOS_Sessions_UpsertNotAllowed | /** This client may not modify the session */ |
5010 | EOS_Sessions_AggregationFailed | /** Backend nodes unavailable to process request */ |
5011 | EOS_Sessions_HostAtCapacity | /** Individual backend node is as capacity */ |
5012 | EOS_Sessions_SandboxAtCapacity | /** Sandbox on node is at capacity */ |
5013 | EOS_Sessions_SessionNotAnonymous | /** An anonymous operation was attempted on a non anonymous session */ |
5014 | EOS_Sessions_OutOfSync | /** Session is currently out of sync with the backend, data is saved locally but needs to sync with backend */ |
5015 | EOS_Sessions_TooManyInvites | /** User has received too many invites */ |
5016 | EOS_Sessions_PresenceSessionExists | /** Presence session already exists for the client */ |
5017 | EOS_Sessions_DeploymentAtCapacity | /** Deployment on node is at capacity */ |
5018 | EOS_Sessions_NotAllowed | /** Session operation not allowed */ |
6000 | EOS_PlayerDataStorage_FilenameInvalid | /** Request filename was invalid */ |
6001 | EOS_PlayerDataStorage_FilenameLengthInvalid | /** Request filename was too long */ |
6002 | EOS_PlayerDataStorage_FilenameInvalidChars | /** Request filename contained invalid characters */ |
6003 | EOS_PlayerDataStorage_FileSizeTooLarge | /** Request operation would grow file too large */ |
6004 | EOS_PlayerDataStorage_FileSizeInvalid | /** Request file length is not valid */ |
6005 | EOS_PlayerDataStorage_FileHandleInvalid | /** Request file handle is not valid */ |
6006 | EOS_PlayerDataStorage_DataInvalid | /** Request data is invalid */ |
6007 | EOS_PlayerDataStorage_DataLengthInvalid | /** Request data length was invalid */ |
6008 | EOS_PlayerDataStorage_StartIndexInvalid | /** Request start index was invalid */ |
6009 | EOS_PlayerDataStorage_RequestInProgress | /** Request is in progress */ |
6010 | EOS_PlayerDataStorage_UserThrottled | /** User is marked as throttled which means he can't perform some operations because limits are exceeded. */ |
6011 | EOS_PlayerDataStorage_EncryptionKeyNotSet | /** Encryption key is not set during SDK init. */ |
6012 | EOS_PlayerDataStorage_UserErrorFromDataCallback | /** User data callback returned error EOS_PlayerDataStorage_EWriteResult:: EOS_WR_FailRequest or EOS_PlayerDataStorage_EReadResult:: EOS_RR_FailRequest */ |
6013 | EOS_PlayerDataStorage_FileHeaderHasNewerVersion | /** User is trying to read a file that has a header from a newer version of SDK. Game/SDK needs to be updated */ |
6014 | EOS_PlayerDataStorage_FileCorrupted | /** The file is corrupted. In some cases, retrying can fix the issue */ |
7000 | EOS_Connect_ExternalTokenValidationFailed | /** `EOS Auth service deemed the external token invalid */ |
7001 | EOS_Connect_UserAlreadyExists | /** `EOS Auth user already exists */ |
7002 | EOS_Connect_AuthExpired | /** `EOS Auth expired */ |
7003 | EOS_Connect_InvalidToken | /** `EOS Auth invalid token */ |
7004 | EOS_Connect_UnsupportedTokenType | /** `EOS Auth doesn't support this token type */ |
7005 | EOS_Connect_LinkAccountFailed | /** `EOS Auth Account link failure */ |
7006 | EOS_Connect_ExternalServiceUnavailable | /** `EOS Auth External service for validation was unavailable */ |
7007 | EOS_Connect_ExternalServiceConfigurationFailure | /** `EOS Auth External Service configuration failure with Dev Portal */ |
7008 | EOS_Connect_LinkAccountFailedMissingNintendoIdAccount_DEPRECATED | /** `EOS Auth Account link failure. Tried to link Nintendo Network Service Account without first linking Nintendo Account. DEPRECATED: The requirement has been removed and this error is no longer used. */ |
8000 | EOS_UI_SocialOverlayLoadError | /** The social overlay page failed to load */ |
9000 | EOS_Lobby_NotOwner | /** Client has no permissions to modify this lobby */ |
9001 | EOS_Lobby_InvalidLock | /** Lobby lock required for operation */ |
9002 | EOS_Lobby_LobbyAlreadyExists | /** Lobby already exists in the system */ |
9003 | EOS_Lobby_SessionInProgress | /** Lobby is already in progress */ |
9004 | EOS_Lobby_TooManyPlayers | /** Too many players to register with this lobby */ |
9005 | EOS_Lobby_NoPermission | /** Client has no permissions to access this lobby */ |
9006 | EOS_Lobby_InvalidSession | /** Invalid lobby session reference */ |
9007 | EOS_Lobby_SandboxNotAllowed | /** Sandbox ID associated with auth didn't match */ |
9008 | EOS_Lobby_InviteFailed | /** Invite failed to send */ |
9009 | EOS_Lobby_InviteNotFound | /** Invite was not found with the service */ |
9010 | EOS_Lobby_UpsertNotAllowed | /** This client may not modify the lobby */ |
9011 | EOS_Lobby_AggregationFailed | /** Backend nodes unavailable to process request */ |
9012 | EOS_Lobby_HostAtCapacity | /** Individual backend node is as capacity */ |
9013 | EOS_Lobby_SandboxAtCapacity | /** Sandbox on node is at capacity */ |
9014 | EOS_Lobby_TooManyInvites | /** User has received too many invites */ |
9015 | EOS_Lobby_DeploymentAtCapacity | /** Deployment on node is at capacity */ |
9016 | EOS_Lobby_NotAllowed | /** Lobby operation not allowed */ |
9017 | EOS_Lobby_MemberUpdateOnly | /** While restoring a lost connection lobby ownership changed and only local member data was updated */ |
9018 | EOS_Lobby_PresenceLobbyExists | /** Presence lobby already exists for the client */ |
10000 | EOS_TitleStorage_UserErrorFromDataCallback | /** User callback that receives data from storage returned error. */ |
10001 | EOS_TitleStorage_EncryptionKeyNotSet | /** User forgot to set Encryption key during platform init. Title Storage can't work without it. */ |
10002 | EOS_TitleStorage_FileCorrupted | /** Downloaded file is corrupted. */ |
10003 | EOS_TitleStorage_FileHeaderHasNewerVersion | /** Downloaded file's format is newer than client SDK version. */ |
11000 | EOS_Mods_ModSdkProcessIsAlreadyRunning | /** ModSdk process is already running. This error comes from the `EOSSDK. */ |
11001 | EOS_Mods_ModSdkCommandIsEmpty | /** ModSdk command is empty. Either the ModSdk configuration file is missing or the manifest location is empty. */ |
11002 | EOS_Mods_ModSdkProcessCreationFailed | /** Creation of the ModSdk process failed. This error comes from the SDK. */ |
11003 | EOS_Mods_CriticalError | /** A critical error occurred in the external ModSdk process that we were unable to resolve. */ |
11004 | EOS_Mods_ToolInternalError | /** An internal error occurred in the external ModSdk process that we were unable to resolve. */ |
11005 | EOS_Mods_IPCFailure | /** An IPC failure occurred in the external ModSdk process. */ |
11006 | EOS_Mods_InvalidIPCResponse | /** An invalid IPC response received in the external ModSdk process. */ |
11007 | EOS_Mods_URILaunchFailure | /** A URI Launch failure occurred in the external ModSdk process. */ |
11008 | EOS_Mods_ModIsNotInstalled | /** Attempting to perform an action with a mod that is not installed. This error comes from the external ModSdk process. */ |
11009 | EOS_Mods_UserDoesNotOwnTheGame | /** Attempting to perform an action on a game that the user doesn't own. This error comes from the external ModSdk process. */ |
11010 | EOS_Mods_OfferRequestByIdInvalidResult | /** Invalid result of the request to get the offer for the mod. This error comes from the external ModSdk process. */ |
11011 | EOS_Mods_CouldNotFindOffer | /** Could not find the offer for the mod. This error comes from the external ModSdk process. */ |
11012 | EOS_Mods_OfferRequestByIdFailure | /** Request to get the offer for the mod failed. This error comes from the external ModSdk process. */ |
11013 | EOS_Mods_PurchaseFailure | /** Request to purchase the mod failed. This error comes from the external ModSdk process. */ |
11014 | EOS_Mods_InvalidGameInstallInfo | /** Attempting to perform an action on a game that is not installed or is partially installed. This error comes from the external ModSdk process. */ |
11015 | EOS_Mods_CannotGetManifestLocation | /** Failed to get manifest location. Either the ModSdk configuration file is missing or the manifest location is empty */ |
11016 | EOS_Mods_UnsupportedOS | /** Attempting to perform an action with a mod that does not support the current operating system. */ |
12000 | EOS_AntiCheat_ClientProtectionNotAvailable | /** The anti-cheat client protection is not available. Check that the game was started using the correct launcher. */ |
12001 | EOS_AntiCheat_InvalidMode | /** The current anti-cheat mode is incorrect for using this API */ |
12002 | EOS_AntiCheat_ClientProductIdMismatch | /** The ProductId provided to the anti-cheat client helper executable does not match what was used to initialize the `EOS SDK */ |
12003 | EOS_AntiCheat_ClientSandboxIdMismatch | /** The SandboxId provided to the anti-cheat client helper executable does not match what was used to initialize the `EOS SDK */ |
12004 | EOS_AntiCheat_ProtectMessageSessionKeyRequired | /** ProtectMessage/UnprotectMessage No session key is available, but it is required to complete this operation */ |
12005 | EOS_AntiCheat_ProtectMessageValidationFailed | /** ProtectMessage/UnprotectMessage Message integrity is invalid */ |
12006 | EOS_AntiCheat_ProtectMessageInitializationFailed | /** ProtectMessage/UnprotectMessage Initialization failed */ |
12007 | EOS_AntiCheat_PeerAlreadyRegistered | /** RegisterPeer Peer is already registered */ |
12008 | EOS_AntiCheat_PeerNotFound | /** UnregisterPeer Peer does not exist */ |
12009 | EOS_AntiCheat_PeerNotProtected | /** ReceiveMessageFromPeer Invalid call: Peer is not protected */ |
13000 | EOS_RTC_TooManyParticipants | /** `EOS RTC room cannot accept more participants */ |
13001 | EOS_RTC_RoomAlreadyExists | /** `EOS RTC room already exists*/ |
13002 | EOS_RTC_UserKicked | /** The user kicked out from the room */ |
13003 | EOS_RTC_UserBanned | /** The user is banned */ |
13004 | EOS_RTC_RoomWasLeft | /** `EOS RTC room was left successfully */ |
13005 | EOS_RTC_ReconnectionTimegateExpired | /** Connection dropped due to long timeout */ |
14000 | EOS_ProgressionSnapshot_SnapshotIdUnavailable | /** The number of available Snapshot IDs have all been exhausted. */ |
15000 | EOS_KWS_ParentEmailMissing | /** The KWS user does not have a parental email associated with the account. The parent account was unlinked or deleted */ |
15001 | EOS_KWS_UserGraduated | /** The KWS user is no longer a minor and trying to update the parent email */ |
17000 | EOS_Android_JavaVMNotStored | /** `EOS Android VM not stored */ |
0x7FFFFFFF | _LASTEOS_UnexpectedError | /** An unexpected error that we cannot identify has occurred. */ |