open class BeanInstantiationException : FatalBeanException
Exception thrown when instantiation of a bean failed. Carries the offending bean class.
Author
Juergen Hoeller
Since
1.2.8
BeanInstantiationException(beanClass: Class<*>, msg: String)BeanInstantiationException(beanClass: Class<*>, msg: String, cause: Throwable)BeanInstantiationException(constructor: Constructor<*>, msg: String, cause: Throwable)BeanInstantiationException(constructingMethod: Method, msg: String, cause: Throwable)
Create a new BeanInstantiationException. |
open fun getBeanClass(): Class<*>
Return the offending bean class (never |
|
open fun getConstructingMethod(): Method
Return the delegate for bean construction purposes, if known. |
|
open fun getConstructor(): Constructor<*>
Return the offending constructor, if known. |