# File lib/aws/core/client/query_json.rb, line 87 def extract_error_details response if response.http_response.status >= 300 and body = response.http_response.body and json = (JSON.load(body) rescue nil) and type = json["__type"] and matches = type.match(%r\#(.*)$/) then code = matches[1] if code == 'RequestEntityTooLarge' message = 'Request body must be less than 1 MB' else message = json['message'] end [code, message] end end