Exception: ObjectTracker::UntrackableMethod
- Inherits:
-
StandardError
- Object
- StandardError
- ObjectTracker::UntrackableMethod
- Defined in:
- lib/object_tracker.rb
Instance Method Summary collapse
-
#initialize(method_name) ⇒ UntrackableMethod
constructor
A new instance of UntrackableMethod.
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 |