类 ParseException

所有已实现的接口:
Serializable
直接已知子类:
SpelParseException

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

    • ParseException

      public ParseException(@Nullable String expressionString, int position, String message)
      Create a new expression parsing exception.
      参数:
      expressionString - the expression string that could not be parsed
      position - the position in the expression string where the problem occurred
      message - description of the problem that occurred
    • ParseException

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

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