Exception: Grifter::RequestException

Inherits:
Exception
  • Object
show all
Defined in:
lib/grifter/http_service.rb

Instance Method Summary collapse

Constructor Details

#initialize(request, response) ⇒ RequestException

Returns a new instance of RequestException.



134
135
136
# File 'lib/grifter/http_service.rb', line 134

def initialize(request, response)
  @request, @response = request, response
end

Instance Method Details

#bodyObject



148
149
150
# File 'lib/grifter/http_service.rb', line 148

def body
  @response.body
end

#codeObject

shortcut methods



144
145
146
# File 'lib/grifter/http_service.rb', line 144

def code
  @response.code
end

#to_sObject

this makes good info show up in rspec reports



139
140
141
# File 'lib/grifter/http_service.rb', line 139

def to_s
  "#{self.class}\nResponseCode: #{@response.code}\nResponseBody:\n#{@response.body}"
end