org.springframework.binding.expression
Class ParserException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.binding.expression.ParserException
- All Implemented Interfaces:
- Serializable
public class ParserException
- extends RuntimeException
Base class for exceptions thrown during expression parsing.
- Author:
- Keith Donald
- See Also:
- Serialized Form
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
ParserException
public ParserException(String expressionString,
Throwable cause)
- Creates a new expression parsing exception.
- Parameters:
expressionString
- the expression string that could not be parsedcause
- the underlying cause of this exception
ParserException
public ParserException(String expressionString,
String message,
Throwable cause)
- Creates a new expression parsing exception.
- Parameters:
expressionString
- the expression string that could not be parsedmessage
- a descriptive messagecause
- the underlying cause of this exception
getExpressionString
public Object getExpressionString()
- Returns the expression string that could not be parsed.