class Roar::Transport::Error

Wraps the original response from NetHttp and provides it via response.

Attributes

response[R]

Public Class Methods

new(response) click to toggle source
Calls superclass method
# File lib/roar/transport/net_http.rb, line 41
def initialize(response)
  @response = response
  super("Roar error: #{response}")
end