Collaboration diagram for Bio-SPHERE Type Error Codes:
![]() |
Defines | |
#define | BS_TYPE_ERROR 0x00000400 |
#define | BS_TYPE_RANGE 0x00000401 |
#define | BS_TYPE_CONVERT_ERROR 0x00000402 |
#define | BS_TYPE_STRING_NO_TERM 0x00000403 |
#define | BS_TYPE_NO_BOOLEAN 0x00000404 |
#define | BS_TYPE_BYTE_ERROR 0x00000405 |
#define BS_TYPE_BYTE_ERROR 0x00000405 |
Whether the given byte type is correct:
Definition at line 197 of file biosphere_error.h.
Referenced by check_builtin_type_bs_byte().
#define BS_TYPE_CONVERT_ERROR 0x00000402 |
When trying to convert to a given type, conversion failed:
Definition at line 191 of file biosphere_error.h.
Referenced by check_builtin_type_bs_double().
#define BS_TYPE_ERROR 0x00000400 |
An general type error:
Definition at line 187 of file biosphere_error.h.
#define BS_TYPE_NO_BOOLEAN 0x00000404 |
The given type data is not representing a boolean:
Definition at line 195 of file biosphere_error.h.
Referenced by check_builtin_type_bs_bool().
#define BS_TYPE_RANGE 0x00000401 |
When trying to convert, the value was out of range:
Definition at line 189 of file biosphere_error.h.
Referenced by check_builtin_type_bs_double(), check_builtin_type_bs_int64(), and check_builtin_type_bs_uint64().
#define BS_TYPE_STRING_NO_TERM 0x00000403 |
The supplied string was not null terminated:
Definition at line 193 of file biosphere_error.h.
Referenced by check_builtin_type_bs_string().