org.springframework.beans
Class BeansException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.core.NestedRuntimeException
                  extended by org.springframework.beans.BeansException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
BeanNotOfRequiredTypeException, FatalBeanException, NoSuchBeanDefinitionException, 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
See Also:
Serialized Form

Constructor Summary
BeansException(String msg)
          Create a new BeansException with the specified message.
BeansException(String msg, Throwable ex)
          Create a new BeansException with the specified message and root cause.
 
Method Summary
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getCause, getMessage, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

BeansException

public BeansException(String msg)
Create a new BeansException with the specified message.

Parameters:
msg - the detail message

BeansException

public BeansException(String msg,
                      Throwable ex)
Create a new BeansException with the specified message and root cause.

Parameters:
msg - the detail message
ex - the root cause


Copyright (c) 2002-2005 The Spring Framework Project.