Don't crash if an open exchange engine throws SecurityException

This commit is contained in:
Peter Osterlund 2020-05-09 11:58:47 +02:00
parent 6829d2ee4f
commit 04363a3b01

View File

@ -156,7 +156,7 @@ public class ExternalEngine extends UCIEngineBase {
}
});
stdErrThread.start();
} catch (IOException ex) {
} catch (IOException | SecurityException ex) {
report.reportError(ex.getMessage());
}
}