| org.springframework.beans.FatalBeanException org.springframework.beans.factory.CannotLoadBeanClassException
CannotLoadBeanClassException | public class CannotLoadBeanClassException extends FatalBeanException (Code) | | Exception thrown when the BeanFactory cannot load the specified class
of a given bean.
author: Juergen Hoeller since: 2.0 |
CannotLoadBeanClassException | public CannotLoadBeanClassException(String resourceDescription, String beanName, String beanClassName, ClassNotFoundException cause)(Code) | | Create a new CannotLoadBeanClassException.
Parameters: resourceDescription - description of the resourcethat the bean definition came from Parameters: beanName - the name of the bean requested Parameters: beanClassName - the name of the bean class Parameters: cause - the root cause |
CannotLoadBeanClassException | public CannotLoadBeanClassException(String resourceDescription, String beanName, String beanClassName, LinkageError cause)(Code) | | Create a new CannotLoadBeanClassException.
Parameters: resourceDescription - description of the resourcethat the bean definition came from Parameters: beanName - the name of the bean requested Parameters: beanClassName - the name of the bean class Parameters: cause - the root cause |
getBeanClassName | public String getBeanClassName()(Code) | | Return the name of the class we were trying to load.
|
getBeanName | public String getBeanName()(Code) | | Return the name of the bean requested.
|
getResourceDescription | public String getResourceDescription()(Code) | | Return the description of the resource that the bean
definition came from.
|
|
|