method
new
rails latest stable - Class:
ActiveRecord::ThroughNestedAssociationsAreReadonly
new(owner = nil, reflection = nil)public
No documentation available.
# 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