]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.graph/src/org/simantics/graph/refactoring/GraphRefactoringException.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.graph / src / org / simantics / graph / refactoring / GraphRefactoringException.java
diff --git a/bundles/org.simantics.graph/src/org/simantics/graph/refactoring/GraphRefactoringException.java b/bundles/org.simantics.graph/src/org/simantics/graph/refactoring/GraphRefactoringException.java
new file mode 100644 (file)
index 0000000..dad8f4e
--- /dev/null
@@ -0,0 +1,23 @@
+package org.simantics.graph.refactoring;\r
+\r
+public class GraphRefactoringException extends Exception {\r
+\r
+    private static final long serialVersionUID = -6947966287676726870L;\r
+\r
+    public GraphRefactoringException() {\r
+        super();\r
+    }\r
+\r
+    public GraphRefactoringException(String message, Throwable cause) {\r
+        super(message, cause);\r
+    }\r
+\r
+    public GraphRefactoringException(String message) {\r
+        super(message);\r
+    }\r
+\r
+    public GraphRefactoringException(Throwable cause) {\r
+        super(cause);\r
+    }\r
+\r
+}\r