You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
void HandleException(const azure::storage::storage_exception& e) {
auto result = e.result();
int http_status_code = result.http_status_code();
auto extended_error = result.extended_error();
I have added the error handling code, and this particular error does not have the error code present in the
storage_exception
. I added this logging:I don't get the error code for the
InvalidRange
error:Is this expected? Is there any other error which will return status code 416, or is
InvalidRange
the only one that has 416?The text was updated successfully, but these errors were encountered: