GamesClientStatusCodes

public final class GamesClientStatusCodes extends CommonStatusCodes

Status codes for Games Clients methods result Task failures.

Constant Summary

int ACHIEVEMENT_NOT_INCREMENTAL Indicates that the call to increment achievement failed since the achievement is not an incremental achievement.
int ACHIEVEMENT_UNKNOWN Could not find the achievement, so the operation to update the achievement failed.
int ACHIEVEMENT_UNLOCKED Indicates that the incremental achievement was also unlocked when the call was made to increment the achievement.
int ACHIEVEMENT_UNLOCK_FAILURE An incremental achievement cannot be unlocked directly, so the call to unlock achievement failed.
int APP_MISCONFIGURED The developer has misconfigured their application in some way.
int CONSENT_REQUIRED The player needs to provide consent to allow the request.
int GAME_NOT_FOUND The specified game ID was not recognized by the server.
int LICENSE_CHECK_FAILED The game is not licensed to the user.
int NETWORK_ERROR_NO_DATA A network error occurred while attempting to retrieve fresh data, and no data was available locally.
int NETWORK_ERROR_OPERATION_FAILED A network error occurred while attempting to perform an operation that requires network access.
int OPERATION_IN_FLIGHT Trying to start a join/create operation while another is already in flight.
int SNAPSHOT_COMMIT_FAILED The attempt to commit the snapshot change failed.
int SNAPSHOT_CONFLICT_MISSING The conflict that was being resolved doesn't exist.
int SNAPSHOT_CONTENTS_UNAVAILABLE An error occurred while attempting to open the contents of the snapshot.
int SNAPSHOT_CREATION_FAILED The attempt to create a snapshot failed.
int SNAPSHOT_FOLDER_UNAVAILABLE The root folder for snapshots could not be found or created.
int SNAPSHOT_NOT_FOUND The specified snapshot does not exist on the server.
int VIDEO_ALREADY_CAPTURING Request could not complete because we were already capturing.
int VIDEO_NOT_ACTIVE Request could not complete because there is no active screencast capture session.
int VIDEO_OUT_OF_DISK_SPACE Request could not complete because the device is out of disk space.
int VIDEO_PERMISSION_ERROR Request could not complete due to permission problems.
int VIDEO_STORAGE_ERROR Request could not complete due to a storage I/O error.
int VIDEO_UNEXPECTED_CAPTURE_ERROR Request could not complete because something unrecoverable happened in the capture service.
int VIDEO_UNSUPPORTED Request could not complete because the request or its options are not supported.

Inherited Constant Summary

Public Method Summary

static String
getStatusCodeString(int statusCode)
Get the string associated with the status code.

Inherited Method Summary

Constants

public static final int ACHIEVEMENT_NOT_INCREMENTAL

Indicates that the call to increment achievement failed since the achievement is not an incremental achievement.

Constant Value: 26562

public static final int ACHIEVEMENT_UNKNOWN

Could not find the achievement, so the operation to update the achievement failed.

Constant Value: 26561

public static final int ACHIEVEMENT_UNLOCKED

Indicates that the incremental achievement was also unlocked when the call was made to increment the achievement.

Constant Value: 26563

public static final int ACHIEVEMENT_UNLOCK_FAILURE

An incremental achievement cannot be unlocked directly, so the call to unlock achievement failed.

Constant Value: 26560

public static final int APP_MISCONFIGURED

The developer has misconfigured their application in some way. The logs will contain more data about the error and the appropriate resolution.

Constant Value: 26508

The player needs to provide consent to allow the request.

Constant Value: 26703

public static final int GAME_NOT_FOUND

The specified game ID was not recognized by the server.

Constant Value: 26509

public static final int LICENSE_CHECK_FAILED

The game is not licensed to the user. Further calls will return the same code.

Constant Value: 26507

public static final int NETWORK_ERROR_NO_DATA

A network error occurred while attempting to retrieve fresh data, and no data was available locally.

Constant Value: 26504

public static final int NETWORK_ERROR_OPERATION_FAILED

A network error occurred while attempting to perform an operation that requires network access. The operation may be retried later.

Constant Value: 26506

public static final int OPERATION_IN_FLIGHT

Trying to start a join/create operation while another is already in flight.

Constant Value: 26607

public static final int SNAPSHOT_COMMIT_FAILED

The attempt to commit the snapshot change failed. See the device logs for more details.

Constant Value: 26573

public static final int SNAPSHOT_CONFLICT_MISSING

The conflict that was being resolved doesn't exist. This could occur if another device resolved this conflict first, or if an inappropriate conflict ID was provided to SnapshotsClient.resolveConflict(String, Snapshot).

Constant Value: 26576

public static final int SNAPSHOT_CONTENTS_UNAVAILABLE

An error occurred while attempting to open the contents of the snapshot. See the device logs for more details.

Constant Value: 26572

public static final int SNAPSHOT_CREATION_FAILED

The attempt to create a snapshot failed. See the device logs for more details.

Constant Value: 26571

public static final int SNAPSHOT_FOLDER_UNAVAILABLE

The root folder for snapshots could not be found or created. See the device logs for more details on the failure.

Constant Value: 26575

public static final int SNAPSHOT_NOT_FOUND

The specified snapshot does not exist on the server.

Constant Value: 26570

public static final int VIDEO_ALREADY_CAPTURING

Request could not complete because we were already capturing.

Constant Value: 26625

public static final int VIDEO_NOT_ACTIVE

Request could not complete because there is no active screencast capture session.

Constant Value: 26620

public static final int VIDEO_OUT_OF_DISK_SPACE

Request could not complete because the device is out of disk space.

Constant Value: 26626

public static final int VIDEO_PERMISSION_ERROR

Request could not complete due to permission problems.

Constant Value: 26622

public static final int VIDEO_STORAGE_ERROR

Request could not complete due to a storage I/O error.

Constant Value: 26623

public static final int VIDEO_UNEXPECTED_CAPTURE_ERROR

Request could not complete because something unrecoverable happened in the capture service.

Constant Value: 26624

public static final int VIDEO_UNSUPPORTED

Request could not complete because the request or its options are not supported.

Constant Value: 26621

Public Methods

public static String getStatusCodeString (int statusCode)

Get the string associated with the status code. This can be used for clearer logging messages to avoid having to look up error codes.

Parameters
statusCode The status code to get the message string for.