Exception: ActiveRecord::ThroughNestedAssociationsAreReadonly
- Inherits:
-
ActiveRecordError
- Object
- StandardError
- ActiveRecordError
- ActiveRecord::ThroughNestedAssociationsAreReadonly
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/associations.rb
Overview
:nodoc:
Direct Known Subclasses
HasManyThroughNestedAssociationsAreReadonly, HasOneThroughNestedAssociationsAreReadonly
Instance Method Summary collapse
-
#initialize(owner = nil, reflection = nil) ⇒ ThroughNestedAssociationsAreReadonly
constructor
A new instance of ThroughNestedAssociationsAreReadonly.
Constructor Details
#initialize(owner = nil, reflection = nil) ⇒ ThroughNestedAssociationsAreReadonly
Returns a new instance of ThroughNestedAssociationsAreReadonly.
209 210 211 212 213 214 215 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/associations.rb', line 209 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 |