Exception: ActiveRecord::RecordNotDestroyed

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

Instance Method Summary collapse

Constructor Details

#initialize(message = nil, record = nil) ⇒ RecordNotDestroyed

Returns a new instance of RecordNotDestroyed.



143
144
145
146
# File 'activerecord/lib/active_record/errors.rb', line 143

def initialize(message = nil, record = nil)
  @record = record
  super(message)
end

Instance Attribute Details

#recordObject (readonly)

Returns the value of attribute record



141
142
143
# File 'activerecord/lib/active_record/errors.rb', line 141

def record
  @record
end