class Graphlient::Errors::HttpServerError

Attributes

response[R]
status_code[R]

Public Class Methods

new(message, response) click to toggle source
Calls superclass method Graphlient::Errors::Error::new
# File lib/graphlient/errors/http_server_error.rb, line 6
def initialize(message, response)
  super(message, response)
  @status_code = response.code
  @response = response.body
end