X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.db.impl%2Fsrc%2Forg%2Fsimantics%2Fdb%2Fimpl%2Fprocedure%2FInternalProcedure.java;h=18345d632b73ef4ee0b9b6da137d540dd033218c;hb=a88c02c2d0f4250caf887a130b9f4314c6564722;hp=aa6425a8c11210d1cea94f01b4f37402ec96cd53;hpb=0ae2b770234dfc3cbb18bd38f324125cf0faca07;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.db.impl/src/org/simantics/db/impl/procedure/InternalProcedure.java b/bundles/org.simantics.db.impl/src/org/simantics/db/impl/procedure/InternalProcedure.java index aa6425a8c..18345d632 100644 --- a/bundles/org.simantics.db.impl/src/org/simantics/db/impl/procedure/InternalProcedure.java +++ b/bundles/org.simantics.db.impl/src/org/simantics/db/impl/procedure/InternalProcedure.java @@ -11,13 +11,14 @@ *******************************************************************************/ package org.simantics.db.impl.procedure; +import org.simantics.db.exception.DatabaseException; import org.simantics.db.impl.graph.ReadGraphImpl; public interface InternalProcedure { - void execute(ReadGraphImpl graph, Result result); - void exception(ReadGraphImpl graph, Throwable throwable); + void execute(ReadGraphImpl graph, Result result) throws DatabaseException; + void exception(ReadGraphImpl graph, Throwable throwable) throws DatabaseException; }