class PR::Pin::Adapter::ResponseError

Attributes

response[R]
result[R]

Public Class Methods

new(response, result) click to toggle source
Calls superclass method
# File lib/pr/pin/adapter/errors.rb, line 10
def initialize(response, result)
  @response = response
  @result = result

  super(result[:error_description])
end