class Patchboard::Action::ResponseError

Attributes

body[R]
headers[R]
response[R]
status[R]

Public Class Methods

new(response) click to toggle source
# File lib/patchboard/action.rb, line 120
def initialize(response)
  @response = response
  @status = @response.status
  @body = @response.body
  @headers = @response.headers
end