Skip to content

Commit

Permalink
Extending catch clause in rewriteAndFetch
Browse files Browse the repository at this point in the history
  • Loading branch information
pmpailis committed Sep 12, 2024
1 parent 46dd1a5 commit 432d137
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ static <T extends Rewriteable<T>> void rewriteAndFetch(
}
}
rewriteResponse.onResponse(builder);
} catch (IOException | IllegalArgumentException | ParsingException ex) {
} catch (Exception ex) {
rewriteResponse.onFailure(ex);
}
}
Expand Down

0 comments on commit 432d137

Please sign in to comment.