//////////////////////////////////////////////////////////////////////////////
/** Make sure this is a valid row for the HRegion */
private void checkRow(final byte [] row) throws IOException {
if(!rowIsInRange(regionInfo, row)) {
throw new WrongRegionException("Requested row out of range for " +
"HRegion " + this + ", startKey='" +
Bytes.toString(regionInfo.getStartKey()) + "', getEndKey()='" +
Bytes.toString(regionInfo.getEndKey()) + "', row='" +
Bytes.toString(row) + "'");
}