Skip to content

Commit

Permalink
Fix : Fusion exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre-maraval committed Nov 27, 2023
1 parent 98d5dc9 commit 5dac6d5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/main/java/fr/abes/bestppn/kafka/TopicConsumer.java
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,7 @@ public void nbLinesListener(ConsumerRecord<String, String> nbLines) {
isOnError = false;
}
}
} catch (IllegalPackageException | IllegalDateException e) {
addBestPPNSearchError(e.getMessage());
} catch (IllegalProviderException | ExecutionException | InterruptedException | IOException e) {
} catch (IllegalPackageException | IllegalDateException | IllegalProviderException | ExecutionException | InterruptedException | IOException e) {
addDataError(e.getMessage());
} finally {
emailService.clearMailAttachment();
Expand Down

0 comments on commit 5dac6d5

Please sign in to comment.