KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > PropertyNotFoundException


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 be
6  * found on a class.
7  *
8  * @author Gavin King
9  */

10 public class PropertyNotFoundException extends MappingException {
11
12     public PropertyNotFoundException(String JavaDoc s) {
13         super(s);
14     }
15
16 }
17
18
19
20
21
22
23
Popular Tags