Better handle errors from eclipse compiled (non-compiling) bytecode

This commit is contained in:
tterrag 2019-05-11 15:39:56 -04:00
parent 01a0674490
commit 7c90d9f3e8
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ public class Scanner {
ClassReader cr = new ClassReader(in);
cr.accept(mcv, 0);
mcv.buildData(result.getClasses(), result.getAnnotations());
} catch (IOException e) {
} catch (IOException | IllegalArgumentException e) {
// mark path bad
}
}