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
- Direct Known Subclasses:
- BeanNotOfRequiredTypeException, NoSuchBeanDefinitionException, BeanDefinitionValidationException, FatalBeanException, NotWritablePropertyException, PropertyAccessException, PropertyAccessExceptionsException
- public abstract class BeansException
- extends NestedRuntimeException
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
| Constructor Summary |
BeansException(String msg) Constructs a BeansException with the specified message. |
BeansException(String msg, Throwable ex) Constructs a BeansException with the specified message
and root cause. |
| Methods inherited from class java.lang.Throwable |
printStackTrace, getStackTrace, setStackTrace, getLocalizedMessage, toString, fillInStackTrace, initCause |
| Methods inherited from class java.lang.Object |
hashCode, notify, notifyAll, wait, wait, wait, getClass, equals |
BeansException
public BeansException(String msg)
- Constructs a
BeansException with the specified message.- Parameters:
- msg - the detail message
BeansException
public BeansException(String msg, Throwable ex)
- Constructs a
BeansException with the specified message
and root cause.- Parameters:
- msg - the detail message
- ex - the root cause