Exception: HTTPClient::BadResponseError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/httpclient.rb

Overview

Raised for indicating HTTP response error.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(msg, res = nil) ⇒ BadResponseError

:nodoc:



219
220
221
222
# File 'lib/httpclient.rb', line 219

def initialize(msg, res = nil) # :nodoc:
  super(msg)
  @res = res
end

Instance Attribute Details

#resObject (readonly)

HTTP::Message

a response



217
218
219
# File 'lib/httpclient.rb', line 217

def res
  @res
end