BlockstoreStatusCodes

  • BlockstoreStatusCodes provides status codes specific to the Block Store.

  • Codes for BlockstoreStatusCodes are allocated from 40000 to 40499 within the CommonStatusCodes range.

  • Specific status codes indicate issues such as unsupported features, exceeding size limits, or too many entries.

  • BlockstoreStatusCodes inherits status codes and methods from CommonStatusCodes and java.lang.Object.

public class BlockstoreStatusCodes extends CommonStatusCodes

Block Store specific status codes.

Codes are allocated from the range 40000 to 40499, allocated in CommonStatusCodes.

Constant Summary

int FEATURE_NOT_SUPPORTED Attempting to use a Blockstore feature that is not (yet) supported on the given device.
int MAX_SIZE_EXCEEDED The available quota was exceeded.
int TOO_MANY_ENTRIES Attempting to store a new key value pair after reaching the maximum number of entries allowed.

Inherited Constant Summary

Public Constructor Summary

Inherited Method Summary

Constants

public static final int FEATURE_NOT_SUPPORTED

Attempting to use a Blockstore feature that is not (yet) supported on the given device.

Constant Value: 40002

public static final int MAX_SIZE_EXCEEDED

The available quota was exceeded.

Constant Value: 40000

public static final int TOO_MANY_ENTRIES

Attempting to store a new key value pair after reaching the maximum number of entries allowed.

Constant Value: 40001

Public Constructors

public BlockstoreStatusCodes ()