try {
hbaseGet = hbaseRequestAdapter.toGet(entityId, tableLayout);
} catch (InvalidLayoutException e) {
// The table layout should never be invalid at this point, since we got it from a valid
// opened table. If it is, there's something seriously wrong.
throw new InternalKijiError(e);
}
// Send the HTable Get.
final Result result = hbaseGet.hasFamilies() ? doHBaseGet(hbaseGet) : new Result();
// Parse the result.