Skip to content

Commit

Permalink
javadoc update part 12
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-jf committed Oct 24, 2024
1 parent 11135b9 commit 4f61f1b
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,12 @@ private static void handleS3Exception(
}
}

/** Checks the status code of the exception to see if it's a 400 or 404 */
/**
* Checks the status code of the exception to see if it's a 400 or 404
*
* @param ex exception
* @return true if it's a 400 or 404 status code
*/
public boolean isClientException400Or404(Exception ex) {
if (ex instanceof AmazonServiceException) {
AmazonServiceException asEx = (AmazonServiceException) (ex);
Expand Down

0 comments on commit 4f61f1b

Please sign in to comment.