KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > id > IdentifierGenerationException


1 //$Id: IdentifierGenerationException.java,v 1.1 2004/06/03 16:30:08 steveebersole Exp $
2
package org.hibernate.id;
3
4 import org.hibernate.HibernateException;
5
6 /**
7  * Thrown by <tt>IdentifierGenerator</tt> implementation class when
8  * ID generation fails.
9  *
10  * @see IdentifierGenerator
11  * @author Gavin King
12  */

13
14 public class IdentifierGenerationException extends HibernateException {
15
16     public IdentifierGenerationException(String JavaDoc msg) {
17         super(msg);
18     }
19
20     public IdentifierGenerationException(String JavaDoc msg, Throwable JavaDoc t) {
21         super(msg, t);
22     }
23
24 }
25
26
27
28
29
30
31
Popular Tags