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.



38
39
40
41
# File 'lib/dynamoid/errors.rb', line 38

def initialize(inner)
  super
  @inner_exception = inner
end

Instance Attribute Details

#inner_exceptionObject (readonly)

Returns the value of attribute inner_exception.



36
37
38
# File 'lib/dynamoid/errors.rb', line 36

def inner_exception
  @inner_exception
end