Exception: Dynamoid::Errors::RecordNotDestroyed
- Defined in:
- lib/dynamoid/errors.rb
Instance Attribute Summary collapse
-
#record ⇒ Object
readonly
Returns the value of attribute record.
Instance Method Summary collapse
-
#initialize(record) ⇒ RecordNotDestroyed
constructor
A new instance of RecordNotDestroyed.
Constructor Details
#initialize(record) ⇒ RecordNotDestroyed
Returns a new instance of RecordNotDestroyed.
38 39 40 41 |
# File 'lib/dynamoid/errors.rb', line 38 def initialize(record) super('Failed to destroy the item') @record = record end |
Instance Attribute Details
#record ⇒ Object (readonly)
Returns the value of attribute record.
36 37 38 |
# File 'lib/dynamoid/errors.rb', line 36 def record @record end |