Open Source Repository

Home /hibernate/hibernate-3.2.7.ga | Repository Home



org/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);
  }

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