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:
- java.io.Serializable
- Direct Known Subclasses:
- NotReadablePropertyException, NotWritablePropertyException, NullValueInNestedPathException
public class InvalidPropertyException
- extends FatalBeanException
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:
- Serialized Form
Constructor Summary |
InvalidPropertyException(java.lang.Class beanClass,
java.lang.String propertyName,
java.lang.String msg)
Create a new InvalidPropertyException. |
InvalidPropertyException(java.lang.Class beanClass,
java.lang.String propertyName,
java.lang.String msg,
java.lang.Throwable cause)
Create a new InvalidPropertyException. |
Method Summary |
java.lang.Class |
getBeanClass()
Return the offending bean class. |
java.lang.String |
getPropertyName()
Return the name of the offending property. |
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 |
beanClass
private java.lang.Class beanClass
propertyName
private java.lang.String propertyName
InvalidPropertyException
public InvalidPropertyException(java.lang.Class beanClass,
java.lang.String propertyName,
java.lang.String msg)
- Create a new InvalidPropertyException.
- Parameters:
beanClass
- the offending bean classpropertyName
- the offending propertymsg
- the detail message
InvalidPropertyException
public InvalidPropertyException(java.lang.Class beanClass,
java.lang.String propertyName,
java.lang.String msg,
java.lang.Throwable cause)
- Create a new InvalidPropertyException.
- Parameters:
beanClass
- the offending bean classpropertyName
- the offending propertymsg
- the detail messagecause
- the root cause
getBeanClass
public java.lang.Class getBeanClass()
- Return the offending bean class.
getPropertyName
public java.lang.String getPropertyName()
- Return the name of the offending property.