Exception: ActiveRecord::HasManyThroughCantAssociateNewRecords
- Inherits:
-
ActiveRecordError
- Object
- StandardError
- ActiveRecordError
- ActiveRecord::HasManyThroughCantAssociateNewRecords
- Defined in:
- lib/active_record/associations.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#initialize(owner, reflection) ⇒ HasManyThroughCantAssociateNewRecords
constructor
A new instance of HasManyThroughCantAssociateNewRecords.
Constructor Details
#initialize(owner, reflection) ⇒ HasManyThroughCantAssociateNewRecords
Returns a new instance of HasManyThroughCantAssociateNewRecords.
63 64 65 |
# File 'lib/active_record/associations.rb', line 63 def initialize(owner, reflection) super("Cannot associate new records through '#{owner.class.name}##{reflection.name}' on '#{reflection.source_reflection.class_name rescue nil}##{reflection.source_reflection.name rescue nil}'. Both records must have an id in order to create the has_many :through record associating them.") end |