Class: TableSync::NoCallableError
Instance Method Summary collapse
-
#initialize(type) ⇒ NoCallableError
constructor
A new instance of NoCallableError.
Constructor Details
#initialize(type) ⇒ NoCallableError
Returns a new instance of NoCallableError.
27 28 29 30 31 32 |
# File 'lib/table_sync/errors.rb', line 27 def initialize(type) super(<<~MSG.squish) Can't find callable for #{type}! Please initialize TableSync.#{type}_callable with the correct proc! MSG end |