Skip to content

Commit

Permalink
Catch more serious errors in the plugin verifier.
Browse files Browse the repository at this point in the history
It doesn't make sense for the caller to handle those.
  • Loading branch information
aadnk committed Jan 8, 2014
1 parent 7e9860f commit 31b26fd
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -360,7 +360,7 @@ private void printPluginWarnings(Plugin plugin) {
// Do nothing
break;
}
} catch (IllegalStateException e) {
} catch (Exception e) {
reporter.reportWarning(this, Report.newBuilder(REPORT_PLUGIN_VERIFIER_ERROR).messageParam(e.getMessage()));
}
}
Expand Down

0 comments on commit 31b26fd

Please sign in to comment.