FileDocCategorySizeDatePackage
BatchFailedException.javaAPI DocHibernate 3.2.5387Fri Aug 04 12:40:56 BST 2006org.hibernate.jdbc

BatchFailedException.java

package org.hibernate.jdbc;

import org.hibernate.HibernateException;

/**
 * Indicates a failed batch entry (-3 return).
 *
 * @author Steve Ebersole
 */
public class BatchFailedException extends HibernateException {
	public BatchFailedException(String s) {
		super( s );
	}

	public BatchFailedException(String string, Throwable root) {
		super( string, root );
	}
}