Exception: ActiveRecord::HasManyThroughSourceAssociationNotFoundError

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

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(reflection = nil) ⇒ HasManyThroughSourceAssociationNotFoundError

Returns a new instance of HasManyThroughSourceAssociationNotFoundError.



88
89
90
91
92
93
94
95
96
97
# File 'lib/active_record/associations.rb', line 88

def initialize(reflection = nil)
  if reflection
    through_reflection      = reflection.through_reflection
    source_reflection_names = reflection.source_reflection_names
    source_associations     = reflection.through_reflection.klass._reflections.keys
    super("Could not find the source association(s) #{source_reflection_names.collect(&:inspect).to_sentence(two_words_connector: ' or ', last_word_connector: ', or ', locale: :en)} in model #{through_reflection.klass}. Try 'has_many #{reflection.name.inspect}, :through => #{through_reflection.name.inspect}, :source => <name>'. Is it one of #{source_associations.to_sentence(two_words_connector: ' or ', last_word_connector: ', or ', locale: :en)}?")
  else
    super("Could not find the source association(s).")
  end
end