Skip to content

Commit

Permalink
simplify exception catch
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Feb 24, 2025
1 parent 99ef4c8 commit 0601433
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ private T runWithRetry() throws IOException {
}
newIoe.setStackTrace(ioe.getStackTrace());
ioe = newIoe;
} catch (NoSuchMethodException | SecurityException | IllegalArgumentException e) {
} catch (Exception e) {
}
shouldRetry(ioe, retry);
}
Expand Down

0 comments on commit 0601433

Please # to comment.