class EasyMeli::Error

Attributes

response[R]

Public Class Methods

new(response) click to toggle source
Calls superclass method
# File lib/easy_meli/errors.rb, line 5
def initialize(response)
  @response = response
  super(local_message)
end

Private Instance Methods

local_message() click to toggle source
# File lib/easy_meli/errors.rb, line 12
def local_message
  raise NotImplementedError
end