org.springframework.beans.factory
Class BeanInitializationException

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.BeanInitializationException

public class BeanInitializationException
extends FatalBeanException

Exception that a bean implementation is suggested to throw if its own factory-aware initialization code fails. BeansExceptions thrown by bean factory methods themselves should simply be propagated as-is.

Note that non-factory-aware initialization methods like afterPropertiesSet() or a custom "init-method" can throw any exception.

Author:
Juergen Hoeller
Since: 13.11.2003
See Also: BeanFactoryAware.setBeanFactory(org.springframework.beans.factory.BeanFactory), InitializingBean.afterPropertiesSet()

Constructor Summary
BeanInitializationException(String msg)
           
BeanInitializationException(String msg, Throwable ex)
           

Methods inherited from class org.springframework.core.NestedRuntimeException
getCause, getMessage, printStackTrace, printStackTrace

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

Constructor Detail

BeanInitializationException

public BeanInitializationException(String msg)

BeanInitializationException

public BeanInitializationException(String msg, Throwable ex)