Exception: ActiveRecord::HasManyThroughCantDissociateNewRecords

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

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(owner, reflection) ⇒ HasManyThroughCantDissociateNewRecords

Returns a new instance of HasManyThroughCantDissociateNewRecords.



69
70
71
# File 'activerecord/lib/active_record/associations.rb', line 69

def initialize(owner, reflection)
  super("Cannot dissociate 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 delete the has_many :through record associating them.")
end