BatchedTooManyRowsAffectedExceptionpublic 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. |
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 int | getBatchPosition()
return batchPosition;
|
|