Exception: Dynamoid::Errors::RecordNotDestroyed

Inherits:
Error
  • Object
show all
Defined in:
lib/dynamoid/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(record) ⇒ RecordNotDestroyed

Returns a new instance of RecordNotDestroyed.



28
29
30
31
# File 'lib/dynamoid/errors.rb', line 28

def initialize(record)
  super('Failed to destroy item')
  @record = record
end

Instance Attribute Details

#recordObject (readonly)

Returns the value of attribute record.



26
27
28
# File 'lib/dynamoid/errors.rb', line 26

def record
  @record
end