]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db/src/org/simantics/db/exception/ClusterDoesNotExistException.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.db / src / org / simantics / db / exception / ClusterDoesNotExistException.java
diff --git a/bundles/org.simantics.db/src/org/simantics/db/exception/ClusterDoesNotExistException.java b/bundles/org.simantics.db/src/org/simantics/db/exception/ClusterDoesNotExistException.java
new file mode 100644 (file)
index 0000000..174f954
--- /dev/null
@@ -0,0 +1,44 @@
+package org.simantics.db.exception;\r
+\r
+import org.simantics.db.Resource;\r
+\r
+public class ClusterDoesNotExistException extends DatabaseException {\r
+\r
+    private static final long serialVersionUID = -1647965373868792422L;\r
+\r
+    public ClusterDoesNotExistException() {\r
+        super();\r
+    }\r
+\r
+    public ClusterDoesNotExistException(int... resources) {\r
+        super(resources);\r
+    }\r
+\r
+    public ClusterDoesNotExistException(String message, int... resources) {\r
+        super(message, resources);\r
+    }\r
+\r
+    public ClusterDoesNotExistException(String message, Resource... rs) {\r
+        super(message, rs);\r
+    }\r
+\r
+    public ClusterDoesNotExistException(String message, Throwable cause, Resource... rs) {\r
+        super(message, cause, rs);\r
+    }\r
+\r
+    public ClusterDoesNotExistException(String message, Throwable cause) {\r
+        super(message, cause);\r
+    }\r
+\r
+    public ClusterDoesNotExistException(String message) {\r
+        super(message);\r
+    }\r
+\r
+    public ClusterDoesNotExistException(Throwable cause, Resource... rs) {\r
+        super(cause, rs);\r
+    }\r
+\r
+    public ClusterDoesNotExistException(Throwable cause) {\r
+        super(cause);\r
+    }\r
+}\r