Exception: WAZ::Queues::QueueAlreadyExists

Inherits:
Storage::StorageException show all
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

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