mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-04 06:36:56 +07:00
[platform] IJPL-1039: extend ProcessCanceledException from CancellationException
GitOrigin-RevId: 8edd7e83dc7029225e6d98f538428d6d6acfcc50
This commit is contained in:
committed by
intellij-monorepo-bot
parent
5fcb10fa31
commit
12e78f18d6
@@ -2,7 +2,6 @@
|
||||
package com.intellij.spellchecker;
|
||||
|
||||
import com.intellij.openapi.diagnostic.Logger;
|
||||
import com.intellij.openapi.progress.ProcessCanceledException;
|
||||
import com.intellij.openapi.vfs.VfsUtil;
|
||||
import com.intellij.openapi.vfs.VirtualFile;
|
||||
import com.intellij.spellchecker.dictionary.Loader;
|
||||
@@ -47,7 +46,7 @@ public final class FileLoader implements Loader {
|
||||
br.lines().forEach(consumer);
|
||||
}
|
||||
}
|
||||
catch (ProcessCanceledException | CancellationException exception) {
|
||||
catch (CancellationException exception) {
|
||||
throw exception;
|
||||
}
|
||||
catch (Exception e) {
|
||||
|
||||
Reference in New Issue
Block a user