Skip to content

Commit

Permalink
Catch Exception instead of RuntimeException
Browse files Browse the repository at this point in the history
  • Loading branch information
nicktindall committed Oct 24, 2024
1 parent 84ff3c2 commit 103aec4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ private void deleteListOfBlobs(AzureBlobServiceClient azureBlobServiceClient, Fl
errors.forEach(ex::addSuppressed);
throw ex;
}
} catch (RuntimeException e) {
} catch (Exception e) {
throw new IOException("Error deleting batches", e);
}
}
Expand Down

0 comments on commit 103aec4

Please sign in to comment.