Class TokenMgrError
java.lang.Object
java.lang.Throwable
java.lang.Error
org.apache.commons.jexl2.parser.TokenMgrError
- All Implemented Interfaces:
Serializable
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intTried to change to an invalid lexical state.static final intLexical error occurred.static final intDetected (and bailed out of) an infinite loop in the token manager.static final intAn attempt was made to create a second instance of a static token manager. -
Constructor Summary
ConstructorsConstructorDescriptionTokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) Full Constructor.TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, int curChar, int reason) TokenMgrError(String message, int reason) Constructor with message and reason. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
LEXICAL_ERROR
-
STATIC_LEXER_ERROR
An attempt was made to create a second instance of a static token manager.- See Also:
-
INVALID_LEXICAL_STATE
Tried to change to an invalid lexical state.- See Also:
-
LOOP_DETECTED
Detected (and bailed out of) an infinite loop in the token manager.- See Also:
-
-
Constructor Details
-
TokenMgrError
Constructor with message and reason. -
TokenMgrError
public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, char curChar, int reason) Full Constructor. -
TokenMgrError
public TokenMgrError(boolean EOFSeen, int lexState, int errorLine, int errorColumn, String errorAfter, int curChar, int reason)
-
-
Method Details
-
getErrorCode
Gets the reason why the exception is thrown.- Returns:
- one of the 4 lexical error codes
-
getLine
-
getColumn
-
getAfter
-
getMessage
Returns a detailed message for the Error when it is thrown by the token manager to indicate a lexical error.- Overrides:
getMessagein classThrowable- Returns:
- the message
-