类 EvaluationException

所有已实现的接口:
Serializable
直接已知子类:
ExpressionInvocationTargetException, SpelEvaluationException

public class EvaluationException extends ExpressionException
Represent an exception that occurs during expression evaluation.
从以下版本开始:
4.0
作者:
Andy Clement
另请参阅:
  • 构造器详细资料

    • EvaluationException

      public EvaluationException(String message)
      Create a new expression evaluation exception.
      参数:
      message - description of the problem that occurred
    • EvaluationException

      public EvaluationException(String message, Throwable cause)
      Create a new expression evaluation exception.
      参数:
      message - description of the problem that occurred
      cause - the underlying cause of this exception
    • EvaluationException

      public EvaluationException(int position, String message)
      Create a new expression evaluation exception.
      参数:
      position - the position in the expression where the problem occurred
      message - description of the problem that occurred
    • EvaluationException

      public EvaluationException(String expressionString, String message)
      Create a new expression evaluation exception.
      参数:
      expressionString - the expression that could not be evaluated
      message - description of the problem that occurred
    • EvaluationException

      public EvaluationException(int position, String message, Throwable cause)
      Create a new expression evaluation exception.
      参数:
      position - the position in the expression where the problem occurred
      message - description of the problem that occurred
      cause - the underlying cause of this exception