Exception: ActiveRecord::RecordNotDestroyed

Inherits:
ActiveRecordError show all
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

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of RecordNotDestroyed.



89
90
91
92
# File 'lib/active_record/errors.rb', line 89

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

Instance Attribute Details

#recordObject (readonly)

Returns the value of attribute record.



87
88
89
# File 'lib/active_record/errors.rb', line 87

def record
  @record
end