public class

EvaluationException

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

Class Overview

Represent an exception that occurs during expression evaluation.

Summary

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

Public Constructors

public EvaluationException (int position, String message)

Creates a new expression evaluation exception.

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

public EvaluationException (String expressionString, String message)

Creates a new expression evaluation exception.

Parameters
expressionString the expression that could not be evaluated
message description of the problem that occurred

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

Creates a new expression evaluation exception.

Parameters
position the position in the expression where the problem occurred
message description of the problem that occurred
cause the underlying cause of this exception

public EvaluationException (String message)

Creates a new expression evaluation exception.

Parameters
message description of the problem that occurred

public EvaluationException (String message, Throwable cause)