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%2FTripleIntProcedure.java;h=7fbbdf76c9e1ec42f12f883897b92ee2696e112d;hp=341dd48f9bf5b37a71e409e6ef7019389fa7477c;hb=HEAD;hpb=0ae2b770234dfc3cbb18bd38f324125cf0faca07 diff --git a/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/TripleIntProcedure.java b/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/TripleIntProcedure.java index 341dd48f9..7fbbdf76c 100644 --- a/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/TripleIntProcedure.java +++ b/bundles/org.simantics.db.impl/src/org/simantics/db/impl/query/TripleIntProcedure.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Association for Decentralized Information Management + * Copyright (c) 2007, 2018 Association for Decentralized Information Management * in Industry THTH ry. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 @@ -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 TripleIntProcedure { - void execute(ReadGraphImpl graph, int s, int p, int o); - void finished(ReadGraphImpl graph); - void exception(ReadGraphImpl graph, Throwable throwable); - + void execute(ReadGraphImpl graph, int s, int p, int o) throws DatabaseException ; + void finished(ReadGraphImpl graph) throws DatabaseException ; + void exception(ReadGraphImpl graph, Throwable throwable) throws DatabaseException; + }