Exception: Gorilla::Error

Inherits:
StandardError
  • Object
show all
Defined in:
lib/gorilla/error.rb

Overview

Top-level error for rescuing all Gorilla Client errors

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(response) ⇒ Error

Returns a new instance of Error.



6
7
8
# File 'lib/gorilla/error.rb', line 6

def initialize(response)
  @response = Gorilla::Response.new(response)
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



4
5
6
# File 'lib/gorilla/error.rb', line 4

def response
  @response
end