Exception: OmniAI::HTTPError
Overview
An error that wraps an HTTP::Response for non-OK requests.
Direct Known Subclasses
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(response) ⇒ HTTPError
constructor
A new instance of HTTPError.
- #inspect ⇒ String
Constructor Details
#initialize(response) ⇒ HTTPError
Returns a new instance of HTTPError.
26 27 28 29 30 |
# File 'lib/omniai.rb', line 26 def initialize(response) super("status=#{response.status} body=#{response.body}") @response = response end |
Instance Attribute Details
#response ⇒ HTTP::Response
23 24 25 |
# File 'lib/omniai.rb', line 23 def response @response end |
Instance Method Details
#inspect ⇒ String
33 34 35 |
# File 'lib/omniai.rb', line 33 def inspect "#<#{self.class} status=#{@response.status} body=#{@response.body}>" end |