]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.acorn/src/org/simantics/acorn/InvalidHeadStateException.java
Acorn: Fix WriteRunnable.runReally() and other fixes
[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
deleted file mode 100644 (file)
index 2c342b7..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-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);
-    }
-}