| org.springframework.beans.factory.BeanCreationException org.springframework.beans.factory.BeanCurrentlyInCreationException
BeanCurrentlyInCreationException | public class BeanCurrentlyInCreationException extends BeanCreationException (Code) | | 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.
author: Juergen Hoeller since: 1.1 |
BeanCurrentlyInCreationException | public BeanCurrentlyInCreationException(String beanName)(Code) | | 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)(Code) | | Create a new BeanCurrentlyInCreationException.
Parameters: beanName - the name of the bean requested Parameters: msg - the detail message |
|
|