class ShopifyAPI::Errors::HttpResponseError
Attributes
Public Class Methods
Source
# File lib/shopify_api/errors/http_response_error.rb, line 16 def initialize(response:) super @code = T.let(response.code, Integer) @response = response end
Calls superclass method