HttpStatusException constructor

HttpStatusException(
  1. AWSHttpResponse response
)

Implementation

HttpStatusException(this.response)
    : super(
        response.decodeBody(),
        underlyingException: 'HTTP Status code: ${response.statusCode}',
      );