Exception: WAZ::Tables::TableDoesNotExist

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

Overview

This exception is raised while trying to delete an unexisting table.

Instance Method Summary collapse

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