Exception: ActiveRecord::HasOneAssociationPolymorphicThroughError

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

Overview

:nodoc:

Instance Method Summary collapse

Constructor Details

#initialize(owner_class_name, reflection) ⇒ HasOneAssociationPolymorphicThroughError

Returns a new instance of HasOneAssociationPolymorphicThroughError.



50
51
52
# File 'lib/active_record/associations.rb', line 50

def initialize(owner_class_name, reflection)
  super("Cannot have a has_one :through association '#{owner_class_name}##{reflection.name}' which goes through the polymorphic association '#{owner_class_name}##{reflection.through_reflection.name}'.")
end