类 EvaluationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cn.taketoday.expression.ExpressionException
cn.taketoday.expression.EvaluationException
- 所有已实现的接口:
Serializable
Represent an exception that occurs during expression evaluation.
- 从以下版本开始:
- 4.0
- 作者:
- Andy Clement
- 另请参阅:
-
字段概要
从类继承的字段 cn.taketoday.expression.ExpressionException
expressionString, position -
构造器概要
构造器构造器说明EvaluationException(int position, String message) Create a new expression evaluation exception.EvaluationException(int position, String message, Throwable cause) Create a new expression evaluation exception.EvaluationException(String message) Create a new expression evaluation exception.EvaluationException(String expressionString, String message) Create a new expression evaluation exception.EvaluationException(String message, Throwable cause) Create a new expression evaluation exception. -
方法概要
从类继承的方法 cn.taketoday.expression.ExpressionException
getExpressionString, getMessage, getPosition, getSimpleMessage, toDetailedString
-
构造器详细资料
-
EvaluationException
Create a new expression evaluation exception.- 参数:
message- description of the problem that occurred
-
EvaluationException
Create a new expression evaluation exception.- 参数:
message- description of the problem that occurredcause- the underlying cause of this exception
-
EvaluationException
Create a new expression evaluation exception.- 参数:
position- the position in the expression where the problem occurredmessage- description of the problem that occurred
-
EvaluationException
Create a new expression evaluation exception.- 参数:
expressionString- the expression that could not be evaluatedmessage- description of the problem that occurred
-
EvaluationException
Create a new expression evaluation exception.- 参数:
position- the position in the expression where the problem occurredmessage- description of the problem that occurredcause- the underlying cause of this exception
-