Method: Azure::Core::Http::HTTPError#parse_unknown_response

Defined in:
lib/azure/core/http/http_error.rb

#parse_unknown_responseObject



120
121
122
123
124
125
# File 'lib/azure/core/http/http_error.rb', line 120

def parse_unknown_response
  @type = 'Unknown'
  if @http_response.body
    @description = "#{@http_response.body.strip}"
  end
end