Method: ActiveRecord::FinderMethods#fifth!

Defined in:
activerecord/lib/active_record/relation/finder_methods.rb

#fifth!Object

Same as #fifth but raises ActiveRecord::RecordNotFound if no record is found.



277
278
279
# File 'activerecord/lib/active_record/relation/finder_methods.rb', line 277

def fifth!
  fifth || raise_record_not_found_exception!
end