public class NoSuchBeanDefinitionException extends BeansException
BeanFactory is asked for a bean
instance for which it cannot find a definition.| Constructor and Description |
|---|
NoSuchBeanDefinitionException(java.lang.Class<?> type)
Create a new
NoSuchBeanDefinitionException. |
NoSuchBeanDefinitionException(java.lang.Class<?> type,
java.lang.String message)
Create a new
NoSuchBeanDefinitionException. |
NoSuchBeanDefinitionException(java.lang.Class<?> type,
java.lang.String dependencyDescription,
java.lang.String message)
Create a new
NoSuchBeanDefinitionException. |
NoSuchBeanDefinitionException(java.lang.String name)
Create a new
NoSuchBeanDefinitionException. |
NoSuchBeanDefinitionException(java.lang.String name,
java.lang.String message)
Create a new
NoSuchBeanDefinitionException. |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getBeanName()
Return the name of the missing bean, if it was a lookup by name
that failed.
|
java.lang.Class<?> |
getBeanType()
Return the required type of the missing bean, if it was a lookup
by type that failed.
|
equals, hashCodecontains, getMessage, getMostSpecificCause, getRootCausepublic NoSuchBeanDefinitionException(java.lang.String name)
NoSuchBeanDefinitionException.name - the name of the missing beanpublic NoSuchBeanDefinitionException(java.lang.String name,
java.lang.String message)
NoSuchBeanDefinitionException.name - the name of the missing beanmessage - detailed message describing the problempublic NoSuchBeanDefinitionException(java.lang.Class<?> type)
NoSuchBeanDefinitionException.type - required type of the missing beanpublic NoSuchBeanDefinitionException(java.lang.Class<?> type,
java.lang.String message)
NoSuchBeanDefinitionException.type - required type of the missing beanmessage - detailed message describing the problempublic NoSuchBeanDefinitionException(java.lang.Class<?> type,
java.lang.String dependencyDescription,
java.lang.String message)
NoSuchBeanDefinitionException.type - required type of the missing beandependencyDescription - a description of the originating dependencymessage - detailed message describing the problem