public class ParseException extends ExpressionException
expressionString, position| 构造器和说明 |
|---|
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, toDetailedStringpublic 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