类 ParseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cn.taketoday.expression.ExpressionException
cn.taketoday.expression.ParseException
- 所有已实现的接口:
Serializable
- 直接已知子类:
SpelParseException
Represent an exception that occurs during expression parsing.
- 从以下版本开始:
- 4.0
- 作者:
- Andy Clement
- 另请参阅:
-
字段概要
从类继承的字段 cn.taketoday.expression.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. -
方法概要
从类继承的方法 cn.taketoday.expression.ExpressionException
getExpressionString, getMessage, getPosition, getSimpleMessage, toDetailedString
-
构造器详细资料
-
ParseException
Create a new expression parsing exception.- 参数:
expressionString- the expression string that could not be parsedposition- the position in the expression string where the problem occurredmessage- description of the problem that occurred
-
ParseException
Create a new expression parsing exception.- 参数:
position- the position in the expression string where the problem occurredmessage- description of the problem that occurredcause- the underlying cause of this exception
-
ParseException
Create a new expression parsing exception.- 参数:
position- the position in the expression string where the problem occurredmessage- description of the problem that occurred
-