public Row get(byte[] row, byte[] startColumn, byte[] stopColumn, int limit) {
try {
return new Result(row, table.get(row, startColumn, stopColumn, limit));
} catch (Exception e) {
LOG.debug("get failed for table: " + getTransactionAwareName() + ", row: " + Bytes.toStringBinary(row), e);
throw new DataSetException("get failed", e);
}
}