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