]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.acorn/src/org/simantics/acorn/InvalidHeadStateException.java
Sharing org.simantics.acorn for everyone to use
[simantics/platform.git] / bundles / org.simantics.acorn / src / org / simantics / acorn / InvalidHeadStateException.java
diff --git a/bundles/org.simantics.acorn/src/org/simantics/acorn/InvalidHeadStateException.java b/bundles/org.simantics.acorn/src/org/simantics/acorn/InvalidHeadStateException.java
new file mode 100644 (file)
index 0000000..2c342b7
--- /dev/null
@@ -0,0 +1,27 @@
+package org.simantics.acorn;
+
+public class InvalidHeadStateException extends Exception {
+
+    private static final long serialVersionUID = -7291859180968235955L;
+
+    public InvalidHeadStateException() {
+        super();
+    }
+
+    public InvalidHeadStateException(String message, Throwable cause, boolean enableSuppression,
+            boolean writableStackTrace) {
+        super(message, cause, enableSuppression, writableStackTrace);
+    }
+
+    public InvalidHeadStateException(String message, Throwable cause) {
+        super(message, cause);
+    }
+
+    public InvalidHeadStateException(String message) {
+        super(message);
+    }
+
+    public InvalidHeadStateException(Throwable cause) {
+        super(cause);
+    }
+}