Class FactoryBeanNotInitializedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.aspectran.core.component.bean.BeanException
com.aspectran.core.component.bean.BeanCreationException
com.aspectran.core.component.bean.FactoryBeanNotInitializedException
- All Implemented Interfaces:
Serializable
Exception to be thrown from a FactoryBean's getObject() method
if the bean is not fully initialized yet,
for example because it is involved in a circular reference.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFactoryBeanNotInitializedException
(BeanRule beanRule) Instantiates a new FactoryBeanNotInitializedException.FactoryBeanNotInitializedException
(String msg, BeanRule beanRule) Instantiates a new FactoryBeanNotInitializedException. -
Method Summary
Methods inherited from class com.aspectran.core.component.bean.BeanCreationException
getBeanRule
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
FactoryBeanNotInitializedException
Instantiates a new FactoryBeanNotInitializedException.- Parameters:
beanRule
- the bean rule
-
FactoryBeanNotInitializedException
Instantiates a new FactoryBeanNotInitializedException.- Parameters:
msg
- the detail messagebeanRule
- the bean rule
-