Exception: ActiveRecord::UnknownPrimaryKey

Inherits:
ActiveRecordError show all
Defined in:
activerecord/lib/active_record/errors.rb

Overview

Raised when a primary key is needed, but not specified in the schema or model.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(model = nil, description = nil) ⇒ UnknownPrimaryKey

Returns a new instance of UnknownPrimaryKey.



447
448
449
450
451
452
453
454
455
456
# File 'activerecord/lib/active_record/errors.rb', line 447

def initialize(model = nil, description = nil)
  if model
    message = "Unknown primary key for table #{model.table_name} in model #{model}."
    message += "\n#{description}" if description
    @model = model
    super(message)
  else
    super("Unknown primary key.")
  end
end

Instance Attribute Details

#modelObject (readonly)

Returns the value of attribute model.



445
446
447
# File 'activerecord/lib/active_record/errors.rb', line 445

def model
  @model
end