}
public static void exportModel(ReadGraph graph, Resource model, String fileName, String format, int version) throws DatabaseException {
+ TransferableGraphConfiguration2 conf = new TransferableGraphConfiguration2(graph, model, true, false);
+ exportModel(graph, conf, fileName, format, version);
+ }
+ public static void exportModel(ReadGraph graph, TransferableGraphConfiguration2 conf, String fileName, String format, int version) throws DatabaseException {
+
try {
- TransferableGraphConfiguration2 conf = new TransferableGraphConfiguration2(graph, model, true, false);
TransferableGraphSource s = graph.syncRequest(new ModelTransferableGraphSourceRequest(conf));
TransferableGraphs.writeTransferableGraph(graph, format, version, s, new File(fileName));
+ } catch (DatabaseException e) {
+ throw e;
} catch (Exception e) {
throw new DatabaseException(e);
}