Exception: OmniAI::HTTPError

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

Overview

An error that wraps an HTTP::Response for non-OK requests.

Direct Known Subclasses

Chat::URL::FetchError

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ HTTPError

Returns a new instance of HTTPError.

Parameters:

  • response (HTTP::Response)


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

#responseHTTP::Response

Returns:

  • (HTTP::Response)


23
24
25
# File 'lib/omniai.rb', line 23

def response
  @response
end

Instance Method Details

#inspectString

Returns:

  • (String)


33
34
35
# File 'lib/omniai.rb', line 33

def inspect
  "#<#{self.class} status=#{@response.status} body=#{@response.body}>"
end