Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslewis2014-04-15 22:33:53 +0000
committerslewis2014-04-15 22:33:53 +0000
commit707e62a8f2cd0b0d0adc33c65558f3b77a77bb29 (patch)
tree684070bd9aea072159a202892bac9da449af0fa6 /framework
parent85a3ce52f594d995fc2675098be064bf7ef3a563 (diff)
downloadorg.eclipse.ecf-707e62a8f2cd0b0d0adc33c65558f3b77a77bb29.tar.gz
org.eclipse.ecf-707e62a8f2cd0b0d0adc33c65558f3b77a77bb29.tar.xz
org.eclipse.ecf-707e62a8f2cd0b0d0adc33c65558f3b77a77bb29.zip
Reverted ECFException changes for
https://bugs.eclipse.org/bugs/show_bug.cgi?id=432868 Change-Id: Ic0549279ee6155e3aebef99c9bf7640080d6aa1b
Diffstat (limited to 'framework')
-rw-r--r--framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/ECFException.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/ECFException.java b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/ECFException.java
index 89f0acce0..74550a2b4 100644
--- a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/ECFException.java
+++ b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/ECFException.java
@@ -8,7 +8,9 @@
******************************************************************************/
package org.eclipse.ecf.core.util;
-import org.eclipse.core.runtime.*;
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.Status;
+import org.eclipse.core.runtime.IStatus;
import org.eclipse.ecf.internal.core.identity.Activator;
public class ECFException extends CoreException {
@@ -39,8 +41,7 @@ public class ECFException extends CoreException {
* @param cause
*/
public ECFException(String message, Throwable cause) {
- this(new Status(IStatus.ERROR, Activator.PLUGIN_ID, 0,
- ((message == null) ? "" : message), cause)); //$NON-NLS-1$
+ this(new Status(IStatus.ERROR, Activator.PLUGIN_ID, 0, ((message == null) ? "" : message), cause)); //$NON-NLS-1$
}
/**
@@ -49,6 +50,5 @@ public class ECFException extends CoreException {
*/
public ECFException(IStatus status) {
super(status);
- initCause(status.getException());
}
} \ No newline at end of file

Back to the top