public class ParserException
extends java.lang.Exception
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getInvalidPortionOfExpression()
Returns the expression string that cannot be parsed.
|
java.lang.String |
getSubExpression()
Returns the subexpression that is the immediate parent of the error portion.
For example, if the expression is 3+LN(MAX(4,)) then getInvalidPortionOfExpression() would return MAX(4,) and getSubExpression() would return LN(MAX(4,)) The returned sub expressions may not exactly match the original string supplied as the expression since space characters and paranthesis may be substituted for efficient parsing. |
public java.lang.String getInvalidPortionOfExpression()
public java.lang.String getSubExpression()