Class ParserException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.binding.expression.ParserException
- All Implemented Interfaces:
- Serializable
Base class for exceptions thrown during expression parsing.
- Author:
- Keith Donald
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionParserException(String expressionString, String message, Throwable cause) Creates a new expression parsing exception.ParserException(String expressionString, Throwable cause) Creates a new expression parsing exception.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the expression string that could not be parsed.Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
ParserExceptionCreates a new expression parsing exception.- Parameters:
- expressionString- the expression string that could not be parsed
- cause- the underlying cause of this exception
 
- 
ParserExceptionCreates a new expression parsing exception.- Parameters:
- expressionString- the expression string that could not be parsed
- message- a descriptive message
- cause- the underlying cause of this exception
 
 
- 
- 
Method Details- 
getExpressionStringReturns the expression string that could not be parsed.
 
-