Exception: Dynamoid::Errors::ConditionalCheckFailedException

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

Overview

This class is intended to be private to Dynamoid.

Direct Known Subclasses

RecordNotUnique, StaleObjectError

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(inner) ⇒ ConditionalCheckFailedException

Returns a new instance of ConditionalCheckFailedException.



16
17
18
19
# File 'lib/dynamoid/errors.rb', line 16

def initialize(inner)
  super
  @inner_exception = inner
end

Instance Attribute Details

#inner_exceptionObject (readonly)

Returns the value of attribute inner_exception.



14
15
16
# File 'lib/dynamoid/errors.rb', line 14

def inner_exception
  @inner_exception
end