method
new
v5.2.3 -
Show latest stable
- Class:
ActiveRecord::HasManyThroughAssociationNotFoundError
new(owner_class_name = nil, reflection = nil)public
No documentation available.
# File activerecord/lib/active_record/associations.rb, line 30
def initialize(owner_class_name = nil, reflection = nil)
if owner_class_name && reflection
super("Could not find the association #{reflection.options[:through].inspect} in model #{owner_class_name}")
else
super("Could not find the association.")
end
end