From 9ce65c5a963b03ee97fe9cb6c5aa65a3c04a80a8 Mon Sep 17 00:00:00 2001 From: yzhou Date: Tue, 21 Apr 2015 10:34:27 +0100 Subject: initial version --- .../karma2/exception/QueryExecutionException.java | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/org/semanticweb/karma2/exception/QueryExecutionException.java (limited to 'src/org/semanticweb/karma2/exception/QueryExecutionException.java') diff --git a/src/org/semanticweb/karma2/exception/QueryExecutionException.java b/src/org/semanticweb/karma2/exception/QueryExecutionException.java new file mode 100644 index 0000000..bb393ba --- /dev/null +++ b/src/org/semanticweb/karma2/exception/QueryExecutionException.java @@ -0,0 +1,13 @@ +package org.semanticweb.karma2.exception; + +import java.util.concurrent.ExecutionException; + +public class QueryExecutionException extends ExecutionException { + + private static final long serialVersionUID = 4082514276158055768L; + + public QueryExecutionException(String msg) { + super(msg); + } + +} -- cgit v1.2.3