]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.acorn/src/org/simantics/acorn/exception/IllegalAcornStateException.java
Acorn: Fix WriteRunnable.runReally() and other fixes
[simantics/platform.git] / bundles / org.simantics.acorn / src / org / simantics / acorn / exception / IllegalAcornStateException.java
diff --git a/bundles/org.simantics.acorn/src/org/simantics/acorn/exception/IllegalAcornStateException.java b/bundles/org.simantics.acorn/src/org/simantics/acorn/exception/IllegalAcornStateException.java
new file mode 100644 (file)
index 0000000..8228d59
--- /dev/null
@@ -0,0 +1,21 @@
+package org.simantics.acorn.exception;
+
+import org.simantics.db.exception.SDBException;
+
+public class IllegalAcornStateException extends SDBException {
+
+    private static final long serialVersionUID = -8255505454138490120L;
+
+    public IllegalAcornStateException(String message, Throwable cause) {
+        super(message, cause);
+    }
+
+    public IllegalAcornStateException(String message) {
+        super(message);
+    }
+
+    public IllegalAcornStateException(Throwable cause) {
+        super(cause);
+    }
+
+}