public class BeanDefinitionStoreException extends FatalBeanException
| Constructor and Description | 
|---|
BeanDefinitionStoreException(String msg)
Create a new BeanDefinitionStoreException. 
 | 
BeanDefinitionStoreException(String resourceDescription,
                            String msg)
Create a new BeanDefinitionStoreException. 
 | 
BeanDefinitionStoreException(String resourceDescription,
                            String beanName,
                            String msg)
Create a new BeanDefinitionStoreException. 
 | 
BeanDefinitionStoreException(String resourceDescription,
                            String beanName,
                            String msg,
                            Throwable cause)
Create a new BeanDefinitionStoreException. 
 | 
BeanDefinitionStoreException(String resourceDescription,
                            String msg,
                            Throwable cause)
Create a new BeanDefinitionStoreException. 
 | 
BeanDefinitionStoreException(String msg,
                            Throwable cause)
Create a new BeanDefinitionStoreException. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
String | 
getBeanName()
Return the name of the bean requested, if any. 
 | 
String | 
getResourceDescription()
Return the description of the resource that the bean
 definition came from, if any. 
 | 
equals, hashCodecontains, getMessage, getMostSpecificCause, getRootCauseaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic BeanDefinitionStoreException(String msg)
msg - the detail message (used as exception message as-is)public BeanDefinitionStoreException(String msg, Throwable cause)
msg - the detail message (used as exception message as-is)cause - the root cause (may be null)public BeanDefinitionStoreException(String resourceDescription, String msg)
resourceDescription - description of the resource that the bean definition came frommsg - the detail message (used as exception message as-is)public BeanDefinitionStoreException(String resourceDescription, String msg, Throwable cause)
resourceDescription - description of the resource that the bean definition came frommsg - the detail message (used as exception message as-is)cause - the root cause (may be null)public BeanDefinitionStoreException(String resourceDescription, String beanName, String msg)
resourceDescription - description of the resource that the bean definition came frombeanName - the name of the bean requestedmsg - the detail message (appended to an introductory message that indicates
 the resource and the name of the bean)public BeanDefinitionStoreException(String resourceDescription, String beanName, String msg, Throwable cause)
resourceDescription - description of the resource that the bean definition came frombeanName - the name of the bean requestedmsg - the detail message (appended to an introductory message that indicates
 the resource and the name of the bean)cause - the root cause (may be null)