public class

BatchedTooManyRowsAffectedException

extends TooManyRowsAffectedException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ org.hibernate.HibernateException
           ↳ org.hibernate.jdbc.TooManyRowsAffectedException
             ↳ org.hibernate.jdbc.BatchedTooManyRowsAffectedException

Class Overview

Much like TooManyRowsAffectedException, indicates that more rows than what we were expcecting were affected. Additionally, this form occurs from a batch and carries along the batch positon that failed.

Summary

Public Constructors
BatchedTooManyRowsAffectedException(String message, int expectedRowCount, int actualRowCount, int batchPosition)
Public Methods
int getBatchPosition()
[Expand]
Inherited Methods
From class org.hibernate.jdbc.TooManyRowsAffectedException
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public BatchedTooManyRowsAffectedException (String message, int expectedRowCount, int actualRowCount, int batchPosition)

Public Methods

public int getBatchPosition ()