Exception: ActiveRecord::UnknownPrimaryKey

Inherits:
ActiveRecordError show all
Defined in:
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.



275
276
277
278
279
280
281
282
283
284
# File 'lib/active_record/errors.rb', line 275

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.



273
274
275
# File 'lib/active_record/errors.rb', line 273

def model
  @model
end