public class ParseException extends ExpressionException
expressionString, position
Constructor and Description |
---|
ParseException(int position,
String message)
Create a new expression parsing exception.
|
ParseException(int position,
String message,
Throwable cause)
Create a new expression parsing exception.
|
ParseException(String expressionString,
int position,
String message)
Create a new expression parsing exception.
|
getExpressionString, getMessage, getPosition, getSimpleMessage, toDetailedString
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public ParseException(@Nullable String expressionString, int position, 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, String message, 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, String message)
position
- the position in the expression string where the problem occurredmessage
- description of the problem that occurred