Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFLaunch.java')
-rw-r--r--plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFLaunch.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFLaunch.java b/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFLaunch.java
index 1eeb8b1e1..7bcc6f7b5 100644
--- a/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFLaunch.java
+++ b/plugins/org.eclipse.tcf.debug/src/org/eclipse/tcf/internal/debug/model/TCFLaunch.java
@@ -893,7 +893,6 @@ public class TCFLaunch extends Launch {
}
}
- @SuppressWarnings("unchecked")
private void startRemoteProcess(final ILaunchConfiguration cfg) throws Exception {
final String project = cfg.getAttribute(TCFLaunchDelegate.ATTR_PROJECT_NAME, "");
final String local_file = cfg.getAttribute(TCFLaunchDelegate.ATTR_LOCAL_PROGRAM_FILE, "");
@@ -1473,7 +1472,7 @@ public class TCFLaunch extends Launch {
// Don't report this exception - it means Eclipse is being shut down
}
catch (Exception x) {
- throw new TCFError(x);
+ throw new DebugException(new TCFError(x));
}
}

Back to the top