KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > cfg > NotYetImplementedException


1 //$Id: NotYetImplementedException.java,v 1.1 2004/09/02 07:24:41 epbernard Exp $
2
package org.hibernate.cfg;
3
4 import org.hibernate.MappingException;
5
6 /**
7  * Mapping not yet implemented
8  *
9  * @author Emmanuel Bernard
10  */

11 public class NotYetImplementedException extends MappingException {
12
13     public NotYetImplementedException(String JavaDoc msg, Throwable JavaDoc root) {
14         super(msg, root);
15     }
16
17     public NotYetImplementedException(Throwable JavaDoc root) {
18         super(root);
19     }
20
21     public NotYetImplementedException(String JavaDoc s) {
22         super(s);
23     }
24
25 }
26
Popular Tags