Exception: ActiveRecord::HasManyThroughCantDissociateNewRecords
- Inherits:
-
ActiveRecordError
- Object
- StandardError
- ActiveRecordError
- ActiveRecord::HasManyThroughCantDissociateNewRecords
- Defined in:
- lib/active_record/associations.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#initialize(owner = nil, reflection = nil) ⇒ HasManyThroughCantDissociateNewRecords
constructor
A new instance of HasManyThroughCantDissociateNewRecords.
Constructor Details
#initialize(owner = nil, reflection = nil) ⇒ HasManyThroughCantDissociateNewRecords
Returns a new instance of HasManyThroughCantDissociateNewRecords.
152 153 154 155 156 157 158 |
# File 'lib/active_record/associations.rb', line 152 def initialize(owner = nil, reflection = nil) if 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.") else super("Cannot dissociate new records.") end end |