Exception: ActiveFedora::RecordNotDestroyed

Inherits:
ActiveFedoraError show all
Defined in:
lib/active_fedora/errors.rb

Overview

Raised by ActiveFedora::Base#destroy! when a call to #destroy would return false.

begin
  complex_operation_that_internally_calls_destroy!
rescue ActiveFedora::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.



78
79
80
81
# File 'lib/active_fedora/errors.rb', line 78

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

Instance Attribute Details

#recordObject (readonly)

Returns the value of attribute record.



76
77
78
# File 'lib/active_fedora/errors.rb', line 76

def record
  @record
end