public class

ParseException

extends ExpressionException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ org.springframework.expression.ExpressionException
           ↳ org.springframework.expression.ParseException
Known Direct Subclasses

Class Overview

Represent an exception that occurs during expression parsing.

Summary

[Expand]
Inherited Fields
From class org.springframework.expression.ExpressionException
Public Constructors
ParseException(String expressionString, int position, String message)
Creates a new expression parsing exception.
ParseException(int position, String message, Throwable cause)
Creates a new expression parsing exception.
ParseException(int position, String message)
Creates a new expression parsing exception.
[Expand]
Inherited Methods
From class org.springframework.expression.ExpressionException
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public ParseException (String expressionString, int position, String message)

Creates a new expression parsing exception.

Parameters
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

public ParseException (int position, String message, Throwable cause)

Creates a new expression parsing exception.

Parameters
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

public ParseException (int position, String message)

Creates a new expression parsing exception.

Parameters
position the position in the expression string where the problem occurred
message description of the problem that occurred