Exception: AsyncRequestReply::WorkerInBatch::WorkerInBatchNotFound

Inherits:
StandardError
  • Object
show all
Defined in:
lib/async_request_reply/worker_in_batch.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(uuid) ⇒ WorkerInBatchNotFound

Returns a new instance of WorkerInBatchNotFound.



17
18
19
20
# File 'lib/async_request_reply/worker_in_batch.rb', line 17

def initialize(uuid)
  @uuid = uuid
  super
end

Instance Attribute Details

#uuidObject

Returns the value of attribute uuid.



15
16
17
# File 'lib/async_request_reply/worker_in_batch.rb', line 15

def uuid
  @uuid
end

Instance Method Details

#messageObject



22
23
24
# File 'lib/async_request_reply/worker_in_batch.rb', line 22

def message
  "WorkerInBatch not found with id #{@uuid}"
end