Exception: ActiveRecord::RecordNotSaved
- Inherits:
-
ActiveRecordError
- Object
- StandardError
- ActiveRecordError
- ActiveRecord::RecordNotSaved
- Defined in:
- lib/active_record/errors.rb
Overview
Raised by ActiveRecord::Base.save! and ActiveRecord::Base.create! methods when record cannot be saved because record is invalid.
Instance Attribute Summary collapse
-
#record ⇒ Object
readonly
Returns the value of attribute record.
Instance Method Summary collapse
-
#initialize(message, record = nil) ⇒ RecordNotSaved
constructor
A new instance of RecordNotSaved.
Constructor Details
#initialize(message, record = nil) ⇒ RecordNotSaved
Returns a new instance of RecordNotSaved.
57 58 59 60 |
# File 'lib/active_record/errors.rb', line 57 def initialize(, record = nil) @record = record super() end |
Instance Attribute Details
#record ⇒ Object (readonly)
Returns the value of attribute record.
55 56 57 |
# File 'lib/active_record/errors.rb', line 55 def record @record end |