X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.db.impl%2Fsrc%2Forg%2Fsimantics%2Fdb%2Fimpl%2Fquery%2FIntProcedure.java;h=4a7bbdb28acf9e52a4e68149a51c4c0add5c3c3e;hp=0a9ccad900745d8af16d98fb8a321bae5bf18f98;hb=0d9b90834ce56b292c00b1a39850ed842c3e4d42;hpb=e5db6157fd8722c946613d4e46d7aaf6bfa92609 diff --git a/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/IntProcedure.java b/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/IntProcedure.java index 0a9ccad90..4a7bbdb28 100644 --- a/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/IntProcedure.java +++ b/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/IntProcedure.java @@ -11,13 +11,14 @@ *******************************************************************************/ package org.simantics.db.impl.query; +import org.simantics.db.exception.DatabaseException; import org.simantics.db.impl.graph.ReadGraphImpl; public interface IntProcedure { - void execute(ReadGraphImpl graph, int i); - void finished(ReadGraphImpl graph); - void exception(ReadGraphImpl graph, Throwable throwable); + void execute(ReadGraphImpl graph, int i) throws DatabaseException; + void finished(ReadGraphImpl graph) throws DatabaseException; + void exception(ReadGraphImpl graph, Throwable throwable) throws DatabaseException; }