Exception: ObjectTracker::UntrackableMethod

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

Instance Method Summary collapse

Constructor Details

#initialize(method_name) ⇒ UntrackableMethod

Returns a new instance of UntrackableMethod.



132
133
134
# File 'lib/object_tracker.rb', line 132

def initialize(method_name)
  super "Can't track :#{method_name} because it's not defined on this class or it's instance"
end