class TableSync::DataError

Public Class Methods

new(data, target_keys, description) click to toggle source
Calls superclass method
# File lib/table_sync/errors.rb, line 19
    def initialize(data, target_keys, description)
      super(<<~MSG.squish)
        #{description}
        target_keys: #{target_keys}
        data: #{data}
      MSG
    end