class ShopifyAPI::Errors::HttpResponseError

Attributes

code[R]
response[R]

Public Class Methods

new(response:) click to toggle source
Calls superclass method
# File lib/shopify_api/errors/http_response_error.rb, line 16
def initialize(response:)
  super
  @code = T.let(response.code, Integer)
  @response = response
end