update dependencies
Signed-off-by: Folling <mail@folling.io>
This commit is contained in:
parent
c489e9e8ae
commit
6310335e41
21 changed files with 800 additions and 370 deletions
|
|
@ -31,24 +31,27 @@ enum IkarusErrorInfo {
|
|||
/// \brief The client provided a non-existent resource.
|
||||
/// Example: Passing an entity to a function after it has been deleted.
|
||||
IkarusErrorInfo_Client_NonExistent = 0x01000003,
|
||||
/// \brief The client provided a resource which exists but is not linked to the current context.
|
||||
/// Example: Passing a property that isn't linked to the current entity.
|
||||
IkarusErrorInfo_Client_NotLinked = 0x01000004,
|
||||
/// \brief The client provided an index that was out of bounds for some array.
|
||||
/// Example: Passing the index 3 for an `IkarusToggleValue` with size 3.
|
||||
IkarusErrorInfo_Client_IndexOutOfBounds = 0x01000004,
|
||||
IkarusErrorInfo_Client_IndexOutOfBounds = 0x01000005,
|
||||
/// \brief The client provided a numeric value that was out of bounds
|
||||
/// Example: Passing the value 2^32 to an i32 (might be passed as a string).
|
||||
IkarusErrorInfo_Client_ValueOutOfBounds = 0x01000005,
|
||||
IkarusErrorInfo_Client_ValueOutOfBounds = 0x01000006,
|
||||
/// \brief The client provided invalid input that doesn't fit in any of the other categories.
|
||||
/// Example: Passing an empty/blank string for a string that must be
|
||||
/// non-empty/-blank.
|
||||
IkarusErrorInfo_Client_InvalidInput = 0x01000006,
|
||||
IkarusErrorInfo_Client_InvalidInput = 0x01000007,
|
||||
/// \brief The client provided valid data in an invalid format.
|
||||
/// Example: Passing a malformed JSON string.
|
||||
IkarusErrorInfo_Client_InvalidFormat = 0x01000007,
|
||||
IkarusErrorInfo_Client_InvalidFormat = 0x01000008,
|
||||
/// \brief The client violated a constraint.
|
||||
/// \details This error is most likely caused by clients.
|
||||
/// Example: A user tries to set the age of a character to a value outside
|
||||
/// its specified range.
|
||||
IkarusErrorInfo_Client_ConstraintViolated = 0x10000008,
|
||||
IkarusErrorInfo_Client_ConstraintViolated = 0x10000009,
|
||||
|
||||
// 0x02 reserved for dependency errors
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue