Exception: WAZ::Tables::TableDoesNotExist
- Inherits:
-
Storage::StorageException
- Object
- StandardError
- Storage::StorageException
- WAZ::Tables::TableDoesNotExist
- Defined in:
- lib/waz/tables/exceptions.rb
Overview
This exception is raised while trying to delete an unexisting table.
Instance Method Summary collapse
-
#initialize(name) ⇒ TableDoesNotExist
constructor
A new instance of TableDoesNotExist.
Constructor Details
#initialize(name) ⇒ TableDoesNotExist
Returns a new instance of TableDoesNotExist.
12 13 14 |
# File 'lib/waz/tables/exceptions.rb', line 12 def initialize(name) super("The specified table #{name} does not exist.") end |