01: //$Id: IdentifierGenerationException.java 3890 2004-06-03 16:31:32Z steveebersole $
02: package org.hibernate.id;
03:
04: import org.hibernate.HibernateException;
05:
06: /**
07: * Thrown by <tt>IdentifierGenerator</tt> implementation class when
08: * ID generation fails.
09: *
10: * @see IdentifierGenerator
11: * @author Gavin King
12: */
13:
14: public class IdentifierGenerationException extends HibernateException {
15:
16: public IdentifierGenerationException(String msg) {
17: super (msg);
18: }
19:
20: public IdentifierGenerationException(String msg, Throwable t) {
21: super(msg, t);
22: }
23:
24: }
|