mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
catch java.lang.Error too (EA-128261 - NCDFE: WinProcess.<init>)
This commit is contained in:
+2
-2
@@ -167,8 +167,8 @@ public class KillableProcessHandler extends OSProcessHandler implements Killable
|
||||
try {
|
||||
return new WinProcess(myProcess).sendCtrlC();
|
||||
}
|
||||
catch (Exception e) {
|
||||
LOG.warn("Failed to send Ctrl+C, fallback to default termination: " + getCommandLine(), e);
|
||||
catch (Error e) {
|
||||
LOG.error("Failed to send Ctrl+C, fallback to default termination: " + getCommandLine(), e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user