public class ParseException extends ExpressionException
expressionString, position
Constructor and Description |
---|
ParseException(int position,
java.lang.String message)
Create a new expression parsing exception.
|
ParseException(int position,
java.lang.String message,
java.lang.Throwable cause)
Create a new expression parsing exception.
|
ParseException(java.lang.String expressionString,
int position,
java.lang.String message)
Create a new expression parsing exception.
|
getExpressionString, getMessage, getPosition, getSimpleMessage, toDetailedString
public ParseException(@Nullable java.lang.String expressionString, int position, java.lang.String message)
expressionString
- the expression string that could not be parsedposition
- the position in the expression string where the problem occurredmessage
- description of the problem that occurredpublic ParseException(int position, java.lang.String message, java.lang.Throwable cause)
position
- the position in the expression string where the problem occurredmessage
- description of the problem that occurredcause
- the underlying cause of this exceptionpublic ParseException(int position, java.lang.String message)
position
- the position in the expression string where the problem occurredmessage
- description of the problem that occurred