Class BeanExpressionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.beans.BeansException
org.springframework.beans.FatalBeanException
org.springframework.beans.factory.BeanExpressionException
- All Implemented Interfaces:
Serializable
Exception that indicates an expression evaluation attempt having failed.
- Since:
- 3.0
- Author:
- Juergen Hoeller
- See Also:
-
Constructor Summary
ConstructorDescriptionCreate a new BeanExpressionException with the specified message.BeanExpressionException
(String msg, Throwable cause) Create a new BeanExpressionException with the specified message and root cause. -
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
BeanExpressionException
Create a new BeanExpressionException with the specified message.- Parameters:
msg
- the detail message
-
BeanExpressionException
Create a new BeanExpressionException with the specified message and root cause.- Parameters:
msg
- the detail messagecause
- the root cause
-