jfun.util.beans
Class NoSuchPropertyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
jfun.util.beans.BeanException
jfun.util.beans.BeanPropertyException
jfun.util.beans.NoSuchPropertyException
- All Implemented Interfaces:
- java.io.Serializable
public class NoSuchPropertyException
- extends BeanPropertyException
Represents an error when a property cannot be found.
Zephyr Business Solutions Corp.
- Author:
- Ben Yu
- See Also:
- Serialized Form
Constructor Summary |
NoSuchPropertyException(java.lang.Class type,
java.lang.String name)
Create a NoSuchPropertyException object. |
NoSuchPropertyException(java.lang.Class type,
java.lang.String name,
java.lang.String arg0)
Create a NoSuchPropertyException object. |
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 |
NoSuchPropertyException
public NoSuchPropertyException(java.lang.Class type,
java.lang.String name)
- Create a NoSuchPropertyException object.
- Parameters:
type
- the type that this property is concerned with.name
- the property name.
NoSuchPropertyException
public NoSuchPropertyException(java.lang.Class type,
java.lang.String name,
java.lang.String arg0)
- Create a NoSuchPropertyException object.
- Parameters:
type
- the type that this property is concerned with.name
- the property name.arg0
- the error message.