mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
GP-227 Handle IllegalArgumentException during batch import #2328
Fixes github issue #2328. Catch and log IllegalArgumentException along with the other exceptions that might be thrown by a loader.
This commit is contained in:
parent
7c0b21f0dc
commit
20a7860856
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ public class ImportBatchTask extends Task {
|
|||
Msg.debug(this, "Batch Import cancelled");
|
||||
}
|
||||
catch (DuplicateNameException | InvalidNameException | VersionException
|
||||
| IOException e) {
|
||||
| IOException | IllegalArgumentException e) {
|
||||
Msg.error(this, "Import failed for " + batchLoadConfig.getPreferredFileName(), e);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue