* (or not deleted at all).
* @return a read-only sail connection to access the data of the triple store at the given date
*/
public SnapshotRepositoryConnection getSnapshot(Date snapshotDate) throws RepositoryException {
try {
return new SnapshotRepositoryConnection(sesameService.getRepository(),sail.getSnapshot(snapshotDate));
} catch (SailException e) {
throw new RepositoryException(e);
}
}