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

BatchedTooManyRowsAffectedException

public class BatchedTooManyRowsAffectedException extends TooManyRowsAffectedException
Much like {@link 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.
author
Steve Ebersole

Fields Summary
private final int
batchPosition
Constructors Summary
public BatchedTooManyRowsAffectedException(String message, int expectedRowCount, int actualRowCount, int batchPosition)

		super( message, expectedRowCount, actualRowCount );
		this.batchPosition = batchPosition;
	
Methods Summary
public intgetBatchPosition()

		return batchPosition;