Exception: WAZ::Tables::EntityDoesNotExist
- Inherits:
-
Storage::StorageException
- Object
- StandardError
- Storage::StorageException
- WAZ::Tables::EntityDoesNotExist
- Defined in:
- lib/waz/tables/exceptions.rb
Overview
This exception is raised while trying to delete an unexisting entity.
Instance Method Summary collapse
-
#initialize(key) ⇒ EntityDoesNotExist
constructor
A new instance of EntityDoesNotExist.
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 |