jfun.yan
Class NonReadablePropertyException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by jfun.yan.YanException
                  extended by jfun.yan.InvalidPropertyException
                      extended by jfun.yan.NonReadablePropertyException
All Implemented Interfaces:
java.io.Serializable

public class NonReadablePropertyException
extends InvalidPropertyException

Represents an exception when a bean component tries to read a property that is not readable.

Codehaus.org.

Author:
Ben Yu
See Also:
Serialized Form

Constructor Summary
NonReadablePropertyException(java.lang.Class type, java.lang.String name)
          Create a NonReadablePropertyException object.
NonReadablePropertyException(java.lang.Class type, java.lang.String name, java.lang.String msg)
          Create a NonReadablePropertyException object.
 
Method Summary
 
Methods inherited from class jfun.yan.InvalidPropertyException
getComponentType, getPropertyName
 
Methods inherited from class jfun.yan.YanException
clearResolutionTrace, getResolutionTrace, printResolutionTrace, printResolutionTrace, printResolutionTrace, printStackTrace, printStackTrace, push
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NonReadablePropertyException

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

Parameters:
type - the property type.
name - the property name.

NonReadablePropertyException

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

Parameters:
type - the property type.
name - the property name.
msg - the error message.