class GoApiClient::HttpFetcher::HttpError

Attributes

http_code[R]

Public Class Methods

new(msg, http_code) click to toggle source
Calls superclass method
# File lib/go_api_client/http_fetcher.rb, line 14
def initialize(msg, http_code)
  super(msg)
  @http_code = http_code
end