method
raise_nested_attributes_record_not_found
v3.0.7 -
Show latest stable
-
0 notes -
Class: ActiveRecord::NestedAttributes
- 1.0.0
- 1.1.0
- 1.1.1
- 1.1.6
- 1.2.0
- 1.2.6
- 2.0.0
- 2.0.1
- 2.0.3
- 2.1.0
- 2.2.1
- 2.3.2
- 2.3.8 (0)
- 3.0.0
- 3.0.5 (0)
- 3.0.7 (0)
- 3.0.9 (0)
- 3.1.0 (0)
- 3.2.1 (0)
- 3.2.3 (0)
- 3.2.8 (0)
- 3.2.13 (0)
- What's this?
raise_nested_attributes_record_not_found(association_name, record_id)
private
Hide source
# File activerecord/lib/active_record/nested_attributes.rb, line 415 def raise_nested_attributes_record_not_found(association_name, record_id) reflection = self.class.reflect_on_association(association_name) raise RecordNotFound, "Couldn't find #{reflection.klass.name} with ID=#{record_id} for #{self.class.name} with ID=#{id}" end


