|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.springframework.core.NestedRuntimeException org.springframework.beans.BeansException org.springframework.beans.FatalBeanException org.springframework.beans.factory.BeanDefinitionStoreException
public class BeanDefinitionStoreException
Exception thrown when a BeanFactory encounters an internal error, and its definitions are invalid: for example, if an XML document containing bean definitions isn't well-formed.
Constructor Summary | |
---|---|
BeanDefinitionStoreException(Resource documentLocation,
String beanName,
String msg)
Deprecated. as of Spring 2.0, in favor of the constructor variant with a resource description argument |
|
BeanDefinitionStoreException(Resource documentLocation,
String beanName,
String msg,
Throwable cause)
Deprecated. as of Spring 2.0, in favor of the constructor variant with a resource description argument |
|
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. |
Method Summary | |
---|---|
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. |
Methods inherited from class org.springframework.core.NestedRuntimeException |
---|
contains, getCause, getMessage, getMostSpecificCause, getRootCause, printStackTrace, printStackTrace |
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public 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
)public BeanDefinitionStoreException(Resource documentLocation, String beanName, String msg)
documentLocation
- descriptor of the resource location 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)BeanDefinitionStoreException(String, String, String)
public BeanDefinitionStoreException(Resource documentLocation, String beanName, String msg, Throwable cause)
documentLocation
- descriptor of the resource location 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 causeBeanDefinitionStoreException(String, String, String, Throwable)
Method Detail |
---|
public String getResourceDescription()
public String getBeanName()
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |