Exception: ROM::Session::ObjectNotTrackedError
- Inherits:
-
StandardError
- Object
- StandardError
- ROM::Session::ObjectNotTrackedError
- Defined in:
- lib/rom-session.rb
Overview
Raised when an object is expected to be tracked and it’s not
Instance Method Summary collapse
-
#initialize(object) ⇒ ObjectNotTrackedError
constructor
A new instance of ObjectNotTrackedError.
Constructor Details
#initialize(object) ⇒ ObjectNotTrackedError
Returns a new instance of ObjectNotTrackedError.
37 38 39 |
# File 'lib/rom-session.rb', line 37 def initialize(object) super("Tracker doesn't include #{object.inspect}") end |