jfun.util.beans
Class PropertyNotWritableException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by jfun.util.beans.BeanException
                  extended by jfun.util.beans.BeanPropertyException
                      extended by jfun.util.beans.PropertyNotWritableException
All Implemented Interfaces:
java.io.Serializable

public class PropertyNotWritableException
extends BeanPropertyException

Represents an exception when a property write fails.

Zephyr Business Solutions Corp.

Author:
Ben Yu
See Also:
Serialized Form

Constructor Summary
PropertyNotWritableException(java.lang.Class type, java.lang.String name)
          Create a PropertyNotWritableException object.
PropertyNotWritableException(java.lang.Class type, java.lang.String name, java.lang.String arg0)
          Create a PropertyNotWritableException object.
 
Method Summary
 
Methods inherited from class jfun.util.beans.BeanPropertyException
getBeanClass, getPropertyName
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

PropertyNotWritableException

public PropertyNotWritableException(java.lang.Class type,
                                    java.lang.String name)
Create a PropertyNotWritableException object.

Parameters:
type - the type that this property is concerned with.
name - the property name.

PropertyNotWritableException

public PropertyNotWritableException(java.lang.Class type,
                                    java.lang.String name,
                                    java.lang.String arg0)
Create a PropertyNotWritableException object.

Parameters:
type - the type that this property is concerned with.
name - the property name.
arg0 - the error message.