Code Enumeration
Function
Describes error code types.
Format
enum class Code {
OK,
ERROR,
INVALID_ARG,
NOT_FOUND,
};
Enumerated Values
Enumeration Name |
Description |
|---|---|
OK |
Operation successful |
ERROR |
Operation failed |
INVALID_ARG |
Invalid parameter |
NOT_FOUND |
The specified resource is not found. |
Parent topic: Structure and Enumeration Description