Package org.springframework.beans
Class InvalidPropertyException
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.InvalidPropertyException
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- NotReadablePropertyException,- NotWritablePropertyException,- NullValueInNestedPathException
Exception thrown when referring to an invalid bean property.
 Carries the offending bean class and property name.
- Since:
- 1.0.2
- Author:
- Juergen Hoeller
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionInvalidPropertyException(Class<?> beanClass, String propertyName, String msg) Create a new InvalidPropertyException.InvalidPropertyException(Class<?> beanClass, String propertyName, String msg, Throwable cause) Create a new InvalidPropertyException.
- 
Method SummaryModifier and TypeMethodDescriptionClass<?>Return the offending bean class.Return the name of the offending property.Methods inherited from class org.springframework.core.NestedRuntimeExceptioncontains, getMostSpecificCause, getRootCauseMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
InvalidPropertyExceptionCreate a new InvalidPropertyException.- Parameters:
- beanClass- the offending bean class
- propertyName- the offending property
- msg- the detail message
 
- 
InvalidPropertyExceptionpublic InvalidPropertyException(Class<?> beanClass, String propertyName, String msg, @Nullable Throwable cause) Create a new InvalidPropertyException.- Parameters:
- beanClass- the offending bean class
- propertyName- the offending property
- msg- the detail message
- cause- the root cause
 
 
- 
- 
Method Details- 
getBeanClassReturn the offending bean class.
- 
getPropertyNameReturn the name of the offending property.
 
-