527528529530531532533534535536537
RowResult results = null; try { results = scanner.next(); if (results == null) { throw new NotFound("end of scanner reached"); } } catch (IOException e) { throw new IOError(e.getMessage()); } return ThriftUtilities.rowResultFromHBase(results);