The Spring Framework

org.springframework.beans.factory
Class BeanCurrentlyInCreationException

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
                      extended by org.springframework.beans.FatalBeanException
                          extended by org.springframework.beans.factory.BeanCreationException
                              extended by org.springframework.beans.factory.BeanCurrentlyInCreationException
All Implemented Interfaces:
Serializable

public class BeanCurrentlyInCreationException
extends BeanCreationException

Exception thrown in case of a reference to a bean that's currently in creation. Typically happens when constructor autowiring matches the currently constructed bean.

Since:
1.1
Author:
Juergen Hoeller
See Also:
Serialized Form

Constructor Summary
BeanCurrentlyInCreationException(String beanName)
          Create a new BeanCurrentlyInCreationException, with a default error message that indicates a circular reference.
BeanCurrentlyInCreationException(String beanName, String msg)
          Create a new BeanCurrentlyInCreationException.
 
Method Summary
 
Methods inherited from class org.springframework.beans.factory.BeanCreationException
getBeanName, getResourceDescription
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getCause, getMessage, getMostSpecificCause, getRootCause, 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

BeanCurrentlyInCreationException

public BeanCurrentlyInCreationException(String beanName)
Create a new BeanCurrentlyInCreationException, with a default error message that indicates a circular reference.

Parameters:
beanName - the name of the bean requested

BeanCurrentlyInCreationException

public BeanCurrentlyInCreationException(String beanName,
                                        String msg)
Create a new BeanCurrentlyInCreationException.

Parameters:
beanName - the name of the bean requested
msg - the detail message

The Spring Framework

Copyright © 2002-2007 The Spring Framework.