request.acceptRDF(false);
execute(request);
return request.readModel();
}
catch (NumberFormatException e) {
throw new StoreException("Server responded with invalid size value");
}
catch (IOException e) {
throw new StoreException(e);
}
catch (RDFParseException e) {
throw new StoreException(e);
}
catch (NoCompatibleMediaType e) {
throw new StoreException(e);
}
finally {
request.release();
}
}