Exception: ActiveRecord::UnknownPrimaryKey
- Inherits:
-
ActiveRecordError
- Object
- StandardError
- ActiveRecordError
- ActiveRecord::UnknownPrimaryKey
- 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
-
#model ⇒ Object
readonly
Returns the value of attribute model.
Instance Method Summary collapse
-
#initialize(model = nil, description = nil) ⇒ UnknownPrimaryKey
constructor
A new instance of UnknownPrimaryKey.
Constructor Details
#initialize(model = nil, description = nil) ⇒ UnknownPrimaryKey
Returns a new instance of UnknownPrimaryKey.
299 300 301 302 303 304 305 306 307 308 |
# File 'activerecord/lib/active_record/errors.rb', line 299 def initialize(model = nil, description = nil) if model = "Unknown primary key for table #{model.table_name} in model #{model}." += "\n#{description}" if description @model = model super() else super("Unknown primary key.") end end |
Instance Attribute Details
#model ⇒ Object (readonly)
Returns the value of attribute model
297 298 299 |
# File 'activerecord/lib/active_record/errors.rb', line 297 def model @model end |