Skip to content

Commit

Permalink
give us the details why it failed to load classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Atsushi Eno committed Aug 25, 2012
1 parent b70ff9a commit be84981
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion JavaArchive.java
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ void getPackages (HashMap<String, JavaPackage> packages, JarFile file)
}
pkg.addClass (new JavaClass (c, node));
} catch (Throwable t) {
System.err.println ("Couldn't load class " + name);
System.err.println ("Couldn't load class " + name + " : " + t);
}
}
}
Expand Down

0 comments on commit be84981

Please sign in to comment.