Exception: Interchange::ImplementationMissingError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/interchange.rb

Instance Method Summary collapse

Constructor Details

#initialize(object, method) ⇒ ImplementationMissingError

Returns a new instance of ImplementationMissingError.



11
12
13
# File 'lib/interchange.rb', line 11

def initialize(object, method)
  super "The #{object.class} does not respond to #{method}"
end