org.springframework.beans
Class InvalidPropertyException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.core.NestedRuntimeException
                  extended by org.springframework.beans.BeansException
                      extended by org.springframework.beans.FatalBeanException
                          extended by org.springframework.beans.InvalidPropertyException
All Implemented Interfaces:
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(Class beanClass, String propertyName, String msg)
          Create a new InvalidPropertyException.
InvalidPropertyException(Class beanClass, String propertyName, String msg, Throwable cause)
          Create a new InvalidPropertyException.
 
Method Summary
 Class getBeanClass()
          Return the offending bean class.
 String getPropertyName()
          Return the name of the offending property.
 
Methods inherited from class org.springframework.beans.BeansException
equals, hashCode
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMessage, getMostSpecificCause, getRootCause
 
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
 

Constructor Detail

InvalidPropertyException

public InvalidPropertyException(Class beanClass,
                                String propertyName,
                                String msg)
Create a new InvalidPropertyException.

Parameters:
beanClass - the offending bean class
propertyName - the offending property
msg - the detail message

InvalidPropertyException

public InvalidPropertyException(Class beanClass,
                                String propertyName,
                                String msg,
                                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 Detail

getBeanClass

public Class getBeanClass()
Return the offending bean class.


getPropertyName

public String getPropertyName()
Return the name of the offending property.