Exception: ActiveRecord::ReadOnlyAssociation

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

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(reflection) ⇒ ReadOnlyAssociation

Returns a new instance of ReadOnlyAssociation.



75
76
77
# File 'lib/active_record/associations.rb', line 75

def initialize(reflection)
  super("Can not add to a has_many :through association.  Try adding to #{reflection.through_reflection.name.inspect}.")
end