org.springframework.beans.factory
Class BeanNotOfRequiredTypeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.beans.BeansException
org.springframework.beans.factory.BeanNotOfRequiredTypeException
- All Implemented Interfaces:
- java.io.Serializable
- Direct Known Subclasses:
- BeanIsNotAFactoryException
public class BeanNotOfRequiredTypeException
- extends BeansException
Thrown when a bean doesn't match the expected type.
- Author:
- Rod Johnson, Juergen Hoeller
- See Also:
- Serialized Form
Constructor Summary |
BeanNotOfRequiredTypeException(java.lang.String beanName,
java.lang.Class requiredType,
java.lang.Class actualType)
Create a new BeanNotOfRequiredTypeException. |
Method Summary |
java.lang.Class |
getActualType()
Return the actual type of the instance found. |
java.lang.String |
getBeanName()
Return the name of the instance that was of the wrong type. |
java.lang.Class |
getRequiredType()
Return the expected type for the bean. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
BeanNotOfRequiredTypeException
public BeanNotOfRequiredTypeException(java.lang.String beanName,
java.lang.Class requiredType,
java.lang.Class actualType)
- Create a new BeanNotOfRequiredTypeException.
- Parameters:
beanName
- the name of the bean requestedrequiredType
- the required typeactualType
- the actual type returned, which did not match
the expected type
getBeanName
public java.lang.String getBeanName()
- Return the name of the instance that was of the wrong type.
getRequiredType
public java.lang.Class getRequiredType()
- Return the expected type for the bean.
getActualType
public java.lang.Class getActualType()
- Return the actual type of the instance found.
Copyright © 2002-2008 The Spring Framework.