Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/exception/OseeDataStoreException.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/exception/OseeDataStoreException.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/exception/OseeDataStoreException.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/exception/OseeDataStoreException.java
index 5f064627b71..7643b707619 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/exception/OseeDataStoreException.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/exception/OseeDataStoreException.java
@@ -10,10 +10,28 @@
*******************************************************************************/
package org.eclipse.osee.framework.core.exception;
+import org.eclipse.core.runtime.IStatus;
+
/**
* @author Ryan D. Brooks
*/
public class OseeDataStoreException extends OseeCoreException {
+ public OseeDataStoreException(IStatus status) {
+ super(status);
+ }
+
+ public OseeDataStoreException(String message, Throwable cause) {
+ super(message, cause);
+ }
+
+ public OseeDataStoreException(Throwable cause, String message, Object... args) {
+ super(cause, message, args);
+ }
+
+ public OseeDataStoreException(Throwable cause) {
+ super(cause);
+ }
+
private static final long serialVersionUID = 7339636628746394923L;
public OseeDataStoreException(String message, Object... args) {

Back to the top