Exception: HTTPFiesta::UnacceptableResponseError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/httpfiesta/unacceptable_response_error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, response) ⇒ UnacceptableResponseError

Returns a new instance of UnacceptableResponseError.



5
6
7
8
# File 'lib/httpfiesta/unacceptable_response_error.rb', line 5

def initialize(message, response)
  super(message)
  @response = response
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



3
4
5
# File 'lib/httpfiesta/unacceptable_response_error.rb', line 3

def response
  @response
end

Instance Method Details

#messageObject



10
11
12
# File 'lib/httpfiesta/unacceptable_response_error.rb', line 10

def message
  "HTTP #{response.request.method.upcase} #{response.request.path} : #{super}"
end