1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 22:25:25 +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 b8aea32ae8
commit 016607fa6e

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);