On this page
class ActiveRecord::RecordNotFound
Raised when Active Record cannot find a record by given id or set of ids.
Attributes
id[R]
model[R]
primary_key[R]
Public Class Methods
# File activerecord/lib/active_record/errors.rb, line 55
def initialize(message = nil, model = nil, primary_key = nil, id = nil)
@primary_key = primary_key
@model = model
@id = id
super(message)
end
Calls superclass method
© 2004–2018 David Heinemeier Hansson
Licensed under the MIT License.