Exception: PanStuff::MethodNotOverriddenError

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

Instance Method Summary collapse

Constructor Details

#initialize(method, object) ⇒ MethodNotOverriddenError

Returns a new instance of MethodNotOverriddenError.



5
6
7
# File 'lib/pan_stuff/method_not_overridden_error.rb', line 5

def initialize(method, object)
  super("Method #{method} not overridden in #{object}")
end