class Bintray::Client::Ruby::HttpError

Attributes

response[R]
status[R]

Public Class Methods

new(http_response) click to toggle source
Calls superclass method
# File lib/bintray/client/ruby/http_error.rb, line 9
def initialize(http_response)
        @status = http_response.status
        @response = http_response

        super('http response error')
end