Jeet Banerjee

Results 3 comments of Jeet Banerjee

According to AWS [docs](https://docs.aws.amazon.com/AmazonS3/latest/API/ErrorResponses.html#ErrorCodeList), a 416 should be accompanied with `InvalidRange` error code. We could catch it like: ``` case ex: S3Exception => if(ex.awsErrorDetails().errorCode() == "InvalidRange") # return empty stream...

I don't see any other status codes/ error messages in S3 docs that return `InvalidRange`. Do you have any other ideas @semenodm ?