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:
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

Field Summary
private  java.lang.Class beanClass
           
private  java.lang.String propertyName
           
 
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 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
 

Field Detail

beanClass

private java.lang.Class beanClass

propertyName

private java.lang.String propertyName
Constructor Detail

InvalidPropertyException

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

Parameters:
beanClass - the offending bean class
propertyName - the offending property
msg - 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 class
propertyName - the offending property
msg - the detail message
cause - the root cause
Method Detail

getBeanClass

public java.lang.Class getBeanClass()
Return the offending bean class.


getPropertyName

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