Exception: ActiveRecord::ThroughNestedAssociationsAreReadonly

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

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(owner = nil, reflection = nil) ⇒ ThroughNestedAssociationsAreReadonly

Returns a new instance of ThroughNestedAssociationsAreReadonly.



144
145
146
147
148
149
150
# File 'lib/active_record/associations.rb', line 144

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