/*
 * Created on Mar 15, 2005
 *
 * $Log$
 * Revision 1.1  2005/08/03 00:35:29  dsowen
 * Initial commit.
 *
 * Revision 1.2  2005/04/10 19:48:29  dowen
 * Renamed package.
 *
 * Revision 1.1  2005/03/19 16:49:21  dowen
 * Initial commit.
 *
 */
package ws.fugue88.jpath;

/**
 * @author dsowen
 */
public class NoSuchPropertyException extends Exception {

	NoSuchPropertyException(final Class type, final String property)
	{
		super("Property '" + property + "' on class " + type + "not found.");
	}
}