Exception: WAZ::Queues::QueueAlreadyExists
- Inherits:
-
Storage::StorageException
- Object
- StandardError
- Storage::StorageException
- WAZ::Queues::QueueAlreadyExists
- Defined in:
- lib/waz/queues/exceptions.rb
Overview
This exception is raised while trying when calling WAZ::Queues::Queue.create(‘queue_name’) and the metadata existing on the Queues Storage subsytem on the cloud contains different metadata from the given one.
Instance Method Summary collapse
-
#initialize(name) ⇒ QueueAlreadyExists
constructor
A new instance of QueueAlreadyExists.
Constructor Details
#initialize(name) ⇒ QueueAlreadyExists
Returns a new instance of QueueAlreadyExists.
7 8 9 |
# File 'lib/waz/queues/exceptions.rb', line 7 def initialize(name) super("The queue #{name} already exists on your account.") end |