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/ArtifactDoesNotExist.java')
-rw-r--r--plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/exception/ArtifactDoesNotExist.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/exception/ArtifactDoesNotExist.java b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/exception/ArtifactDoesNotExist.java
index 35b43a3904f..1c52f998d70 100644
--- a/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/exception/ArtifactDoesNotExist.java
+++ b/plugins/org.eclipse.osee.framework.core/src/org/eclipse/osee/framework/core/exception/ArtifactDoesNotExist.java
@@ -10,6 +10,8 @@
*******************************************************************************/
package org.eclipse.osee.framework.core.exception;
+import org.eclipse.core.runtime.IStatus;
+
/**
* @author Donald G. Dunne
*/
@@ -20,4 +22,20 @@ public class ArtifactDoesNotExist extends OseeCoreException {
public ArtifactDoesNotExist(String message, Object... args) {
super(message, args);
}
+
+ public ArtifactDoesNotExist(IStatus status) {
+ super(status);
+ }
+
+ public ArtifactDoesNotExist(String message, Throwable cause) {
+ super(message, cause);
+ }
+
+ public ArtifactDoesNotExist(Throwable cause, String message, Object... args) {
+ super(cause, message, args);
+ }
+
+ public ArtifactDoesNotExist(Throwable cause) {
+ super(cause);
+ }
} \ No newline at end of file

Back to the top