Exception: WAZ::Tables::EntityDoesNotExist

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

Overview

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

Instance Method Summary collapse

Constructor Details

#initialize(key) ⇒ EntityDoesNotExist

Returns a new instance of EntityDoesNotExist.



40
41
42
# File 'lib/waz/tables/exceptions.rb', line 40

def initialize(key)
  super("The specified entity with #{key} does not exist.")
end