Exception: ActiveRecord::ThroughCantAssociateThroughHasOneOrManyReflection
- Inherits:
-
ActiveRecordError
- Object
- StandardError
- ActiveRecordError
- ActiveRecord::ThroughCantAssociateThroughHasOneOrManyReflection
- 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
HasManyThroughCantAssociateThroughHasOneOrManyReflection, HasOneThroughCantAssociateThroughHasOneOrManyReflection
Instance Method Summary collapse
-
#initialize(owner = nil, reflection = nil) ⇒ ThroughCantAssociateThroughHasOneOrManyReflection
constructor
A new instance of ThroughCantAssociateThroughHasOneOrManyReflection.
Constructor Details
#initialize(owner = nil, reflection = nil) ⇒ ThroughCantAssociateThroughHasOneOrManyReflection
Returns a new instance of ThroughCantAssociateThroughHasOneOrManyReflection.
178 179 180 181 182 183 184 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/activerecord-7.0.4/lib/active_record/associations.rb', line 178 def initialize(owner = nil, reflection = nil) if owner && reflection super("Cannot modify association '#{owner.class.name}##{reflection.name}' because the source reflection class '#{reflection.source_reflection.class_name}' is associated to '#{reflection.through_reflection.class_name}' via :#{reflection.source_reflection.macro}.") else super("Cannot modify association.") end end |