Exception: ActiveRecord::RecordNotDestroyed
- Inherits:
-
ActiveRecordError
- Object
- StandardError
- ActiveRecordError
- ActiveRecord::RecordNotDestroyed
- Defined in:
- lib/active_record/errors.rb
Overview
Raised by ActiveRecord::Base#destroy! when a call to #destroy would return false.
begin
complex_operation_that_internally_calls_destroy!
rescue ActiveRecord::RecordNotDestroyed => invalid
puts invalid.record.errors
end
Instance Attribute Summary collapse
-
#record ⇒ Object
readonly
Returns the value of attribute record.
Instance Method Summary collapse
-
#initialize(message = nil, record = nil) ⇒ RecordNotDestroyed
constructor
A new instance of RecordNotDestroyed.
Constructor Details
#initialize(message = nil, record = nil) ⇒ RecordNotDestroyed
Returns a new instance of RecordNotDestroyed.
164 165 166 167 |
# File 'lib/active_record/errors.rb', line 164 def initialize( = nil, record = nil) @record = record super() end |
Instance Attribute Details
#record ⇒ Object (readonly)
Returns the value of attribute record.
162 163 164 |
# File 'lib/active_record/errors.rb', line 162 def record @record end |