Class: ActiveRecord::HasManyThroughAssociationNotFoundError

Inherits:
ActiveRecordError
  • Object
show all
Defined in:
lib/active_record/associations.rb

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(reflection) ⇒ HasManyThroughAssociationNotFoundError

Returns a new instance of HasManyThroughAssociationNotFoundError.



13
14
15
# File 'lib/active_record/associations.rb', line 13

def initialize(reflection)
  @reflection = reflection
end

Instance Method Details

#messageObject



17
18
19
# File 'lib/active_record/associations.rb', line 17

def message
  "Could not find the association #{@reflection.options[:through].inspect} in model #{@reflection.klass}"
end