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, @Nullable 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 NestedRuntimeExceptioncontains, getMostSpecificCause, getRootCauseMethods inherited from class ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
InvalidPropertyException
- 
InvalidPropertyException
 
- 
- 
Method Details- 
getBeanClassReturn the offending bean class.
- 
getPropertyNameReturn the name of the offending property.
 
-