1 //$Id: PropertyNotFoundException.java,v 1.1 2004/06/03 16:30:04 steveebersole Exp $2 package org.hibernate;3 4 /**5 * Indicates that an expected getter or setter method could not be6 * found on a class.7 *8 * @author Gavin King9 */10 public class PropertyNotFoundException extends MappingException {11 12 public PropertyNotFoundException(String s) {13 super(s);14 }15 16 }17 18 19 20 21 22 23