FileDocCategorySizeDatePackage
PropertyNotFoundException.javaAPI DocHibernate 3.2.5362Thu Jun 03 11:31:32 BST 2004org.hibernate

PropertyNotFoundException.java

//$Id: PropertyNotFoundException.java 3890 2004-06-03 16:31:32Z steveebersole $
package org.hibernate;

/**
 * Indicates that an expected getter or setter method could not be
 * found on a class.
 *
 * @author Gavin King
 */
public class PropertyNotFoundException extends MappingException {

	public PropertyNotFoundException(String s) {
		super(s);
	}

}