Exception: ROM::Session::ObjectNotTrackedError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/rom-session.rb

Overview

Raised when an object is expected to be tracked and it’s not

Instance Method Summary collapse

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