StorageHttpStatusException constructor

const StorageHttpStatusException(
  1. int statusCode, {
  2. String? recoverySuggestion,
  3. Object? underlyingException,
})

Exception thrown when the service returned unsuccessful response.

Implementation

const StorageHttpStatusException(
  int statusCode, {
  super.recoverySuggestion,
  super.underlyingException,
}) : super('The HTTP response status code is $statusCode');