Exception: WAZ::Tables::TableAlreadyExists

Inherits:
Storage::StorageException show all
Defined in:
lib/waz/tables/exceptions.rb

Overview

This exception is raised while trying to create table that already exists.

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ TableAlreadyExists

Returns a new instance of TableAlreadyExists.



5
6
7
# File 'lib/waz/tables/exceptions.rb', line 5

def initialize(name)
  super("The table #{name} already exists on your account.")
end