Skip to content

Commit

Permalink
Catch and log throwable to help diagnoze Clearcase issue
Browse files Browse the repository at this point in the history
  • Loading branch information
henryju committed Jan 8, 2017
1 parent 6fd336e commit 8fe3072
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public IStatus runInWorkspace(IProgressMonitor monitor) {
job.runInWorkspace(projectAnalysisMonitor);
}

} catch (Exception e) {
} catch (Throwable e) {
SonarLintLogger.get().error(UNABLE_TO_ANALYZE_CHANGED_FILES, e);
return new Status(Status.ERROR, SonarLintCorePlugin.PLUGIN_ID, UNABLE_TO_ANALYZE_CHANGED_FILES, e);
}
Expand Down

0 comments on commit 8fe3072

Please sign in to comment.