org.hibernate.jdbc.BatchFailedException Maven / Gradle / Ivy
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 );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy