class Setl::Destination

Public Instance Methods

call(row, &block) click to toggle source
# File lib/setl/delegates.rb, line 37
def call(row, &block)
  item.call(row, &block)
rescue StandardError => e
  error_handler.(DestinationError.new(row, "Failed to send #{row}", e))
end