Exception: Excon::Errors::HTTPStatusError

Inherits:
Error
  • Object
show all
Defined in:
lib/excon/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(msg, request = nil, response = nil) ⇒ HTTPStatusError

Returns a new instance of HTTPStatusError.



29
30
31
32
33
# File 'lib/excon/errors.rb', line 29

def initialize(msg, request = nil, response = nil)
  super(msg)
  @request = request
  @response = response
end

Instance Attribute Details

#requestObject (readonly)

Returns the value of attribute request.



27
28
29
# File 'lib/excon/errors.rb', line 27

def request
  @request
end

#responseObject (readonly)

Returns the value of attribute response.



27
28
29
# File 'lib/excon/errors.rb', line 27

def response
  @response
end