org.hibernate.id.IdentifierGenerationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate Show documentation
Show all versions of hibernate Show documentation
Relational Persistence for Java
//$Id: IdentifierGenerationException.java 3890 2004-06-03 16:31:32Z steveebersole $
package org.hibernate.id;
import org.hibernate.HibernateException;
/**
* Thrown by IdentifierGenerator implementation class when
* ID generation fails.
*
* @see IdentifierGenerator
* @author Gavin King
*/
public class IdentifierGenerationException extends HibernateException {
public IdentifierGenerationException(String msg) {
super(msg);
}
public IdentifierGenerationException(String msg, Throwable t) {
super(msg, t);
}
}