Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Stieber2012-05-25 07:07:55 +0000
committerUwe Stieber2012-05-25 07:07:55 +0000
commitcd822fb9e1041dbd02071a04b2b7963ac98be248 (patch)
tree6558e7ecac6cf212093b483b8e96de2a14965693 /admin/findbugs-exclude.xml
parent24df7c2f488edd4f66dc12c5442d6b1a45d4c5d3 (diff)
downloadorg.eclipse.tcf-cd822fb9e1041dbd02071a04b2b7963ac98be248.tar.gz
org.eclipse.tcf-cd822fb9e1041dbd02071a04b2b7963ac98be248.tar.xz
org.eclipse.tcf-cd822fb9e1041dbd02071a04b2b7963ac98be248.zip
FindBugs: Ignore warning about catching Exception instead of the number of really thrown exception classes
Diffstat (limited to 'admin/findbugs-exclude.xml')
-rw-r--r--admin/findbugs-exclude.xml5
1 files changed, 5 insertions, 0 deletions
diff --git a/admin/findbugs-exclude.xml b/admin/findbugs-exclude.xml
index e4a84532e..492eb40a8 100644
--- a/admin/findbugs-exclude.xml
+++ b/admin/findbugs-exclude.xml
@@ -32,6 +32,11 @@
</Or>
</Match>
+ <!-- Ignore all REC_CATCH_EXCEPTION -->
+ <Match>
+ <Bug pattern="REC_CATCH_EXCEPTION"/>
+ </Match>
+
<!-- Ignore all EQ_DOESNT_OVERRIDE_EQUALS -->
<Match>
<Bug pattern="EQ_DOESNT_OVERRIDE_EQUALS"/>

Back to the top