public class

BeanDefinitionStoreException

extends FatalBeanException
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
Known Direct Subclasses

Class Overview

Exception thrown when a BeanFactory encounters an invalid bean definition: e.g. in case of incomplete or contradictory bean metadata.

Summary

Public Constructors
BeanDefinitionStoreException(String msg)
Create a new BeanDefinitionStoreException.
BeanDefinitionStoreException(String msg, Throwable cause)
Create a new BeanDefinitionStoreException.
BeanDefinitionStoreException(String resourceDescription, String msg)
Create a new BeanDefinitionStoreException.
BeanDefinitionStoreException(String resourceDescription, String msg, Throwable cause)
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.
Public Methods
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.
[Expand]
Inherited Methods
From class org.springframework.beans.BeansException
From class org.springframework.core.NestedRuntimeException
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public BeanDefinitionStoreException (String msg)

Also: SpringBeans

Create a new BeanDefinitionStoreException.

Parameters
msg the detail message (used as exception message as-is)

public BeanDefinitionStoreException (String msg, Throwable cause)

Also: SpringBeans

Create a new BeanDefinitionStoreException.

Parameters
msg the detail message (used as exception message as-is)
cause the root cause (may be null)

public BeanDefinitionStoreException (String resourceDescription, String msg)

Also: SpringBeans

Create a new BeanDefinitionStoreException.

Parameters
resourceDescription description of the resource that the bean definition came from
msg the detail message (used as exception message as-is)

public BeanDefinitionStoreException (String resourceDescription, String msg, Throwable cause)

Also: SpringBeans

Create a new BeanDefinitionStoreException.

Parameters
resourceDescription description of the resource that the bean definition came from
msg the detail message (used as exception message as-is)
cause the root cause (may be null)

public BeanDefinitionStoreException (String resourceDescription, String beanName, String msg)

Also: SpringBeans

Create a new BeanDefinitionStoreException.

Parameters
resourceDescription description of the resource that the bean definition came from
beanName the name of the bean requested
msg 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)

Also: SpringBeans

Create a new BeanDefinitionStoreException.

Parameters
resourceDescription description of the resource that the bean definition came from
beanName the name of the bean requested
msg 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 Methods

public String getBeanName ()

Also: SpringBeans

Return the name of the bean requested, if any.

public String getResourceDescription ()

Also: SpringBeans

Return the description of the resource that the bean definition came from, if any.