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:
- java.io.Serializable
- Direct Known Subclasses:
- BeanNotOfRequiredTypeException, FatalBeanException, NoSuchBeanDefinitionException, PropertyAccessException, PropertyBatchUpdateException
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, Juergen Hoeller
- See Also:
- Serialized Form
Constructor Summary |
BeansException(java.lang.String msg)
Create a new BeansException with the specified message. |
BeansException(java.lang.String msg,
java.lang.Throwable cause)
Create a new BeansException with the specified message
and root cause. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
BeansException
public BeansException(java.lang.String msg)
- Create a new BeansException with the specified message.
- Parameters:
msg
- the detail message
BeansException
public BeansException(java.lang.String msg,
java.lang.Throwable cause)
- Create a new BeansException with the specified message
and root cause.
- Parameters:
msg
- the detail messagecause
- the root cause
equals
public boolean equals(java.lang.Object other)
- Overrides:
equals
in class java.lang.Object
hashCode
public int hashCode()
- Overrides:
hashCode
in class java.lang.Object