suppress false positive
diff --git a/findbugs-exclude-filter.xml b/findbugs-exclude-filter.xml
index 7074237..5cc6c5e 100644
--- a/findbugs-exclude-filter.xml
+++ b/findbugs-exclude-filter.xml
@@ -165,4 +165,12 @@
     <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE" />
   </Match>
 
+  <!-- Reason: nested code can throw IllegalArgumentException if
+       stream is not a TAR stream -->
+  <Match>
+    <Class name="org.apache.commons.compress.archivers.ArchiveStreamFactory" />
+    <Method name="createArchiveInputStream" />
+    <Bug pattern="REC_CATCH_EXCEPTION" />
+  </Match>
+  
 </FindBugsFilter>