List<T> foundElements = new ArrayList<T>();
try {
return getEntities(all, foundElements, firstResult, maxResults);
} catch(RowNotFoundException e) {
log.trace("converting row not found into stored entities missing", e);
throw new StorageMissingEntitesException(foundElements, "Your index refers to rows that no longer exist in the nosql store", e);
}
}