Skip to main content
Version: 6.0.0

IsServerError

public bool IsServerError();

Description

When the server is temporarily overloaded or 500, 502, and 503 errors that do not appear in normal situations occur, 'true' is returned.

The included error cases are as follows:

When the server is temporarily overloaded
statusCode : 500
errorCode : InternalServerError

When the server is temporarily overloaded
statusCode : 502
errorCode : BadGateway

When the request takes a long time
statusCode : 503
errorCode : ETIMEDOUT

When the server is not working properly
statusCode : 503
errorCode : Service Temporarily Unavailable

The error may occur when the user inflow suddenly increases. The issue is likely to be resolved when the same method is called 30 or 60 seconds later.

Example

BackndReturnObject bro = Backnd.PlayerTable.Get("tableName");

if(bro.IsSuccess())
{
}
else
{
if(bro.IsServerError())
{
Debug.Log("Occurs when the server is overloaded or unstable.");
}
}