class GmoPayment::Errors::RequestMissingItemError

Error of request body has missing items.

Attributes

called_method[RW]

@!attribute [rw] called_method @!attribute [rw] items

items[RW]

@!attribute [rw] called_method @!attribute [rw] items

Public Class Methods

new(called_method = nil, items = []) click to toggle source

@param [Symbol] called_method @param [Array] items

Calls superclass method
# File lib/gmo_payment/errors.rb, line 32
def initialize(called_method = nil, items = [])
  self.called_method = called_method
  self.items = items
  super(items.join(', '))
end