Exception: Blodsband::Riak::List::ActorDeletedError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/blodsband/riak/list.rb

Overview

An error signaling that performing an operation failed because one or more of the actors in the operation have been deleted.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(actor, message) ⇒ ActorDeletedError

Returns a new instance of ActorDeletedError.



35
36
37
38
# File 'lib/blodsband/riak/list.rb', line 35

def initialize(actor, message)
  super(message)
  @actor = actor
end

Instance Attribute Details

#actorObject (readonly)

Object

The actor that was deleted.



34
35
36
# File 'lib/blodsband/riak/list.rb', line 34

def actor
  @actor
end