--- a/src/net/timbusproject/extractors/provenance/ProvenanceAccessClient.java
+++ b/src/net/timbusproject/extractors/provenance/ProvenanceAccessClient.java
@@ -372,7 +372,11 @@
         try {
             reader = new CSVReader(new InputStreamReader(new FileInputStream(CSVReport.getAbsolutePath()), "UTF-8"),
                     ',', '\'', 1);
-        } catch (UnsupportedEncodingException | FileNotFoundException e) {
+        } catch (UnsupportedEncodingException e){
+            LOGGER.error("ERROR: File not found " + e.getMessage());
+            return Collections.EMPTY_LIST;
+        }
+        catch (FileNotFoundException e){
             LOGGER.error("ERROR: File not found " + e.getMessage());
             return Collections.EMPTY_LIST;
         }