AI-generated Key Takeaways
-
UNSPECIFIED
andUNKNOWN
are generic enum errors, withUNKNOWN
indicating an unrecognized error code. -
Errors like
NO_MORE_INPUT
,EXPECTED_CHARACTER
,UNEXPECTED_SEPARATOR
,UNMATCHED_LEFT_BRACKET
,UNMATCHED_RIGHT_BRACKET
, andTOO_MANY_NESTED_FUNCTIONS
relate to structural issues within the function string. -
Issues with operands and operators include
MISSING_RIGHT_HAND_OPERAND
,INVALID_OPERATOR_NAME
,FEED_ATTRIBUTE_OPERAND_ARGUMENT_NOT_INTEGER
,NO_OPERANDS
, andTOO_MANY_OPERANDS
.
Enum describing possible function parsing errors.
Enums | |
---|---|
|
Enum unspecified. |
|
The received error code is not known in this version. |
|
Unexpected end of function string. |
|
Could not find an expected character. |
|
Unexpected separator character. |
|
Unmatched left bracket or parenthesis. |
|
Unmatched right bracket or parenthesis. |
|
Functions are nested too deeply. |
|
Missing right-hand-side operand. |
|
Invalid operator/function name. |
|
Feed attribute operand's argument is not an integer. |
|
Missing function operands. |
|
Function had too many operands. |