X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.db%2Fsrc%2Forg%2Fsimantics%2Fdb%2Fexception%2FSDBException.java;fp=bundles%2Forg.simantics.db%2Fsrc%2Forg%2Fsimantics%2Fdb%2Fexception%2FSDBException.java;h=abb0a12142e2f6c66fc8c9e6e5f0701f33e11754;hb=969bd23cab98a79ca9101af33334000879fb60c5;hp=0000000000000000000000000000000000000000;hpb=866dba5cd5a3929bbeae85991796acb212338a08;p=simantics%2Fplatform.git 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 index 000000000..abb0a1214 --- /dev/null +++ b/bundles/org.simantics.db/src/org/simantics/db/exception/SDBException.java @@ -0,0 +1,19 @@ +package org.simantics.db.exception; + +public abstract class SDBException extends InternalException { + + private static final long serialVersionUID = 7201271522841727065L; + + public SDBException(String message) { + super(message); + } + + public SDBException(String message, Throwable cause) { + super(message, cause); + } + + public SDBException(Throwable cause) { + super(cause); + } + +}