if (execute(request) && !request.isNotModified()) {
request.readRDF(handler);
}
}
catch (NoCompatibleMediaType e) {
throw new StoreException(e);
}
catch (IOException e) {
throw new StoreException(e);
}
catch (RDFParseException e) {
throw new StoreException(e);
}
finally {
request.release();
}
}