]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.procore/src/org/simantics/db/procore/cluster/OutOfSpaceException.java
Migrated source code from Simantics SVN
[simantics/platform.git] / bundles / org.simantics.db.procore / src / org / simantics / db / procore / cluster / OutOfSpaceException.java
diff --git a/bundles/org.simantics.db.procore/src/org/simantics/db/procore/cluster/OutOfSpaceException.java b/bundles/org.simantics.db.procore/src/org/simantics/db/procore/cluster/OutOfSpaceException.java
new file mode 100644 (file)
index 0000000..18d067c
--- /dev/null
@@ -0,0 +1,21 @@
+package org.simantics.db.procore.cluster;\r
+\r
+import org.simantics.db.exception.InternalException;\r
+\r
+public class OutOfSpaceException extends InternalException {\r
+\r
+       private static final long serialVersionUID = 8118388231221084642L;\r
+\r
+    public OutOfSpaceException(String message) {\r
+        super(message);\r
+    }\r
+\r
+    public OutOfSpaceException(String message, Throwable cause) {\r
+        super(message, cause);\r
+    }\r
+\r
+    public OutOfSpaceException(Throwable cause) {\r
+        super(cause);\r
+    }\r
+\r
+}\r