@Override
public void checkRowExistsBeforeInsert(InsertAction insert,
String entityTableName, Put entityPut) throws IOException,
StorageTableNotFoundException {
if (actionManager.exits(entityTableName, new Get(entityPut.getRow()))) {
throw new PrimaryKeyAlreadyExistsException(Bytes.toString(insert
.getCombinedPrimaryKey()));
}
}