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 SummaryConstructorsConstructorDescriptionCreate a new BeanExpressionException with the specified message.BeanExpressionException(String msg, Throwable cause) Create a new BeanExpressionException with the specified message and root cause.
- 
Method SummaryMethods inherited from class org.springframework.core.NestedRuntimeExceptioncontains, getMessage, getMostSpecificCause, getRootCauseMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
BeanExpressionExceptionCreate a new BeanExpressionException with the specified message.- Parameters:
- msg- the detail message
 
- 
BeanExpressionExceptionCreate a new BeanExpressionException with the specified message and root cause.- Parameters:
- msg- the detail message
- cause- the root cause
 
 
-