Exception: ActiveRecord::HasManyThroughAssociationNotFoundError
- Inherits:
-
ActiveRecordError
- Object
- StandardError
- ActiveRecordError
- ActiveRecord::HasManyThroughAssociationNotFoundError
- Defined in:
- lib/active_record/associations.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#initialize(owner_class_name = nil, reflection = nil) ⇒ HasManyThroughAssociationNotFoundError
constructor
A new instance of HasManyThroughAssociationNotFoundError.
Constructor Details
#initialize(owner_class_name = nil, reflection = nil) ⇒ HasManyThroughAssociationNotFoundError
Returns a new instance of HasManyThroughAssociationNotFoundError.
30 31 32 33 34 35 36 |
# File 'lib/active_record/associations.rb', line 30 def initialize(owner_class_name = nil, reflection = nil) if owner_class_name && reflection super("Could not find the association #{reflection.[:through].inspect} in model #{owner_class_name}") else super("Could not find the association.") end end |