Generic error codes for expected type.
Default error type when no specific error enum is needed
| Enumerator |
|---|
| OK | No error (not typically used)
|
| UNKNOWN | Unknown or unspecified error.
|
| INVALID_ARGUMENT | Invalid argument provided.
|
| OUT_OF_RANGE | Value out of valid range.
|
| NOT_INITIALIZED | Object not initialized.
|
| ALREADY_INITIALIZED | Object already initialized.
|
| ALLOCATION_FAILED | Memory allocation failed.
|
| TIMEOUT | Operation timed out.
|
| BUSY | Resource is busy.
|
| NOT_SUPPORTED | Operation not supported.
|
| IO_ERROR | Input/output error.
|
Definition at line 47 of file expected.h.
59};
@ NOT_INITIALIZED
Object not initialized.
@ ALREADY_INITIALIZED
Object already initialized.
@ IO_ERROR
Input/output error.
@ NOT_SUPPORTED
Operation not supported.
@ OUT_OF_RANGE
Value out of valid range.
@ ALLOCATION_FAILED
Memory allocation failed.
@ TIMEOUT
Operation timed out.
@ OK
No error (not typically used)
@ INVALID_ARGUMENT
Invalid input arguments.