Class SyntaxErrorCode
- java.lang.Object
-
- org.pipservices3.expressions.calculator.SyntaxErrorCode
-
public class SyntaxErrorCode extends Object
General syntax errors.
-
-
Field Summary
Fields Modifier and Type Field Description static StringERROR_ATThe error atstatic StringERROR_NEARThe error nearstatic StringINTERNALThe internal errorstatic StringMISSED_CLOSE_PARENTHESISThe missed close parenthesisstatic StringMISSED_CLOSE_SQUARE_BRACKETThe missed close square bracketstatic StringUNEXPECTED_ENDThe unexpected end.static StringUNKNOWNThe unknownstatic StringUNKNOWN_SYMBOLThe unknown symbol
-
Constructor Summary
Constructors Constructor Description SyntaxErrorCode()
-
-
-
Field Detail
-
UNKNOWN
public static final String UNKNOWN
The unknown- See Also:
- Constant Field Values
-
INTERNAL
public static final String INTERNAL
The internal error- See Also:
- Constant Field Values
-
UNEXPECTED_END
public static final String UNEXPECTED_END
The unexpected end.- See Also:
- Constant Field Values
-
ERROR_NEAR
public static final String ERROR_NEAR
The error near- See Also:
- Constant Field Values
-
ERROR_AT
public static final String ERROR_AT
The error at- See Also:
- Constant Field Values
-
UNKNOWN_SYMBOL
public static final String UNKNOWN_SYMBOL
The unknown symbol- See Also:
- Constant Field Values
-
MISSED_CLOSE_PARENTHESIS
public static final String MISSED_CLOSE_PARENTHESIS
The missed close parenthesis- See Also:
- Constant Field Values
-
MISSED_CLOSE_SQUARE_BRACKET
public static final String MISSED_CLOSE_SQUARE_BRACKET
The missed close square bracket- See Also:
- Constant Field Values
-
-