1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-09 18:56:02 +02:00

[191305] Fix incorrect handling of errors during terminal connector initialization

This commit is contained in:
Martin Oberhuber 2007-06-06 17:37:04 +00:00
parent bcf58c2243
commit 3ba1731131

View file

@ -111,6 +111,7 @@ public class TerminalConnectorExtension {
fConnector=createConnector(fConfig);
fConnector.initialize();
} catch (Exception e) {
fConnector=null;
fException=e;
// that's the place where we log the exception
Logger.logException(e);