class RestConnection::Errors::HTTPStatusError

HTTPStatusErrors, borrowed lovingly from the excon gem <3

Attributes

request[R]
response[R]

Public Class Methods

new(msg, response = nil, request = nil) click to toggle source
Calls superclass method
# File lib/rest_connection.rb, line 306
def initialize(msg, response = nil, request = nil)
  super(msg)
  @request = request
  @response = response
end