Room not found
Code
ROOM_NOT_FOUND
What it means
The server could not find an active room instance for the requested realm/room id.
When it happens
- A room lookup fails (realm/room id does not exist).
Typical scenarios:
- Client requested a realmId that has not been created/loaded
- Room was purged/evicted after being inactive
- Client and server disagree on realm id type/format
How to handle
- Treat as
404. - In UI, show a “room/realm not found” message and route the user back to a safe page.
Notes
This code is intentionally flat (no ROOM/... prefix) for now, but it is grouped under ROOM
in AppErrorCodes for discoverability.
Last updated on