Exception: ActiveRecord::UnknownPrimaryKey
- Inherits:
-
ActiveRecordError
- Object
- StandardError
- ActiveRecordError
- ActiveRecord::UnknownPrimaryKey
- 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
-
#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.
277 278 279 280 281 282 283 284 285 286 |
# File 'lib/active_record/errors.rb', line 277 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.
275 276 277 |
# File 'lib/active_record/errors.rb', line 275 def model @model end |