Class MustacheErrorCode
- java.lang.Object
-
- org.pipservices3.expressions.mustache.parsers.MustacheErrorCode
-
public class MustacheErrorCode 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 StringMISMATCHED_BRACKETSThe mismatched bracketsstatic StringMISSING_VARIABLEThe missing variablestatic StringNOT_CLOSED_SECTIONNot closed sectionstatic StringUNEXPECTED_ENDThe unexpected end.static StringUNEXPECTED_SECTION_ENDUnexpected section endstatic StringUNEXPECTED_SYMBOLThe unexpected symbolstatic StringUNKNOWNThe unknown
-
Constructor Summary
Constructors Constructor Description MustacheErrorCode()
-
-
-
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
-
UNEXPECTED_SYMBOL
public static final String UNEXPECTED_SYMBOL
The unexpected symbol- See Also:
- Constant Field Values
-
MISMATCHED_BRACKETS
public static final String MISMATCHED_BRACKETS
The mismatched brackets- See Also:
- Constant Field Values
-
MISSING_VARIABLE
public static final String MISSING_VARIABLE
The missing variable- See Also:
- Constant Field Values
-
NOT_CLOSED_SECTION
public static final String NOT_CLOSED_SECTION
Not closed section- See Also:
- Constant Field Values
-
UNEXPECTED_SECTION_END
public static final String UNEXPECTED_SECTION_END
Unexpected section end- See Also:
- Constant Field Values
-
-