Skip to content
This repository has been archived by the owner on Sep 6, 2024. It is now read-only.

Commit

Permalink
be more robust about class loader errors
Browse files Browse the repository at this point in the history
Former-commit-id: 985cc2a7c9159ca71ee976c367b35106953e64f6
Former-commit-id: 7739c73
  • Loading branch information
rgatkinson committed Mar 3, 2016
1 parent 3bc8f45 commit 07942b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ static List<Method> getDeclaredMethods(Class<?> clazz)
try {
methods = clazz.getDeclaredMethods();
}
catch (Exception e)
catch (Exception|LinkageError e)
{
methods = new Method[0];
}
Expand Down

0 comments on commit 07942b6

Please sign in to comment.