org.springframework.beans
Class NotWritablePropertyException

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
                              extended by org.springframework.beans.NotWritablePropertyException
All Implemented Interfaces:
Serializable

public class NotWritablePropertyException
extends InvalidPropertyException

Exception thrown on an attempt to set the value of a property that isn't writable, because there's no setter method.

Author:
Rod Johnson
See Also:
Serialized Form

Constructor Summary
NotWritablePropertyException(Class beanClass, String propertyName)
          Create a new NotWritablePropertyException.
NotWritablePropertyException(Class beanClass, String propertyName, String msg, Throwable ex)
          Create a new NotWritablePropertyException.
 
Method Summary
 
Methods inherited from class org.springframework.beans.InvalidPropertyException
getBeanClass, getPropertyName
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getCause, getMessage, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NotWritablePropertyException

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

Parameters:
beanClass - the offending bean class
propertyName - the offending property

NotWritablePropertyException

public NotWritablePropertyException(Class beanClass,
                                    String propertyName,
                                    String msg,
                                    Throwable ex)
Create a new NotWritablePropertyException.

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


Copyright (c) 2002-2005 The Spring Framework Project.