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 when8 * ID generation fails.9 *10 * @see IdentifierGenerator11 * @author Gavin King12 */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 }25 26 27 28 29 30 31