Skip to content

Commit

Permalink
print error details when asm or java failed to read class bytecode.
Browse files Browse the repository at this point in the history
  • Loading branch information
Atsushi Eno committed Jan 31, 2013
1 parent 02cb66c commit 767ecc8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions JavaArchive.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ void getPackages (HashMap<String, JavaPackage> packages, JarFile file)
}
pkg.addClass (new JavaClass (c, node));
} catch (Throwable t) {
t.printStackTrace ();
System.err.println ("warning J2X9001: Couldn't load class " + name + " : " + t);
}
}
Expand Down

0 comments on commit 767ecc8

Please sign in to comment.