294295296297298299300301302
{ throw new RuntimeException(e); } catch (TimeoutException e) { throw new TimedOutException(); } return rows; }
225226227228229230231232233234235
{ return StorageProxy.read(commands, parameters.consistencyLevel); } catch (TimeoutException e) { throw new TimedOutException(); } catch (IOException e) { throw new RuntimeException(e); }
262263264265266267268269270