Package org.springframework.beans
Class BeansException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.beans.BeansException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- BeanNotOfRequiredTypeException,- FatalBeanException,- NoSuchBeanDefinitionException,- PropertyAccessException,- PropertyBatchUpdateException
Abstract superclass for all exceptions thrown in the beans package
 and subpackages.
 
Note that this is a runtime (unchecked) exception. Beans exceptions are usually fatal; there is no reason for them to be checked.
- Author:
- Rod Johnson, Juergen Hoeller
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionBeansException(String msg) Create a new BeansException with the specified message.BeansException(String msg, Throwable cause) Create a new BeansException 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- 
BeansExceptionCreate a new BeansException with the specified message.- Parameters:
- msg- the detail message
 
- 
BeansExceptionCreate a new BeansException with the specified message and root cause.- Parameters:
- msg- the detail message
- cause- the root cause
 
 
-