123456789_123456789_123456789_123456789_123456789_

Exception: ActiveRecord::ThroughNestedAssociationsAreReadonly

Do not use. This class is for internal use only.
Relationships & Source Files
Extension / Inclusion / Inheritance Descendants
Subclasses:
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, ActiveRecordError, StandardError
Instance Chain:
self, ActiveRecordError, StandardError
Inherits: ActiveRecord::ActiveRecordError
Defined in: activerecord/lib/active_record/associations.rb

Class Method Summary

Constructor Details

.new(owner = nil, reflection = nil) ⇒ ThroughNestedAssociationsAreReadonly

[ GitHub ]

  
# File 'activerecord/lib/active_record/associations.rb', line 225

def initialize(owner = nil, reflection = nil)
  if owner && reflection
    super("Cannot modify association '#{owner.class.name}##{reflection.name}' because it goes through more than one other association.")
  else
    super("Through nested associations are read-only.")
  end
end