Exception: Operations::Errors::NotImplementedError

Inherits:
BaseException
  • Object
show all
Defined in:
lib/operations/errors/not_implemented_error.rb

Instance Method Summary collapse

Constructor Details

#initialize(klass, missing_method) ⇒ NotImplementedError

Returns a new instance of NotImplementedError.



4
5
6
# File 'lib/operations/errors/not_implemented_error.rb', line 4

def initialize(klass, missing_method)
  super("The class #{klass} does not implement the method #{missing_method}")
end