class ActiveRecord::RecordNotFound
Raised when Active Record cannot find a record by given id or set of ids.
Inherits From
Attributes
[R] | id |
|
[R] | model |
|
[R] | primary_key |
Public class methods
Source code GitHub
# File activerecord/lib/active_record/errors.rb, line 139
def initialize(message = nil, model = nil, primary_key = nil, id = nil)
@primary_key = primary_key
@model = model
@id = id
super(message)
end