Exception: AsyncRequestReply::WorkerInBatch::WorkerInBatchNotFound
- Inherits:
-
StandardError
- Object
- StandardError
- AsyncRequestReply::WorkerInBatch::WorkerInBatchNotFound
- Defined in:
- lib/async_request_reply/worker_in_batch.rb
Instance Attribute Summary collapse
-
#uuid ⇒ Object
Returns the value of attribute uuid.
Instance Method Summary collapse
-
#initialize(uuid) ⇒ WorkerInBatchNotFound
constructor
A new instance of WorkerInBatchNotFound.
- #message ⇒ Object
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
#uuid ⇒ Object
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
#message ⇒ Object
22 23 24 |
# File 'lib/async_request_reply/worker_in_batch.rb', line 22 def "WorkerInBatch not found with id #{@uuid}" end |