Exception: WAZ::Tables::TableAlreadyExists
- Inherits:
-
Storage::StorageException
- Object
- StandardError
- Storage::StorageException
- WAZ::Tables::TableAlreadyExists
- Defined in:
- lib/waz/tables/exceptions.rb
Overview
This exception is raised while trying to create table that already exists.
Instance Method Summary collapse
-
#initialize(name) ⇒ TableAlreadyExists
constructor
A new instance of TableAlreadyExists.
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 |