~ubuntu-branches/ubuntu/wily/libhibernate3-java/wily-proposed

« back to all changes in this revision

Viewing changes to src/org/hibernate/PropertyNotFoundException.java

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-10-14 14:43:34 UTC
  • Revision ID: james.westby@ubuntu.com-20071014144334-eamc8i0q10gs1aro
Tags: upstream-3.2.5
ImportĀ upstreamĀ versionĀ 3.2.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//$Id: PropertyNotFoundException.java 3890 2004-06-03 16:31:32Z steveebersole $
 
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 s) {
 
13
                super(s);
 
14
        }
 
15
 
 
16
}
 
17
 
 
18
 
 
19
 
 
20
 
 
21
 
 
22