Exception thrown for dataset IO-related failures.
116117118119120121122123124125
for (List<KeyValue> keyValueList : familyMap.values()) { for (KeyValue keyValue : keyValueList) { try { put1.add(keyValue); } catch (IOException e) { throw new DatasetIOException("Could not add KeyValue to put", e); } } } }
164165166167168169170171
} } } return deleted; } catch (IOException ex) { throw new DatasetIOException("Could not cleanly delete path:" + dir, ex); } }