Exception: WAZ::Tables::EntityAlreadyExists
- Inherits:
-
Storage::StorageException
- Object
- StandardError
- Storage::StorageException
- WAZ::Tables::EntityAlreadyExists
- Defined in:
- lib/waz/tables/exceptions.rb
Overview
This exception is raised when the specified entity already exists.
Instance Method Summary collapse
-
#initialize(row_key) ⇒ EntityAlreadyExists
constructor
A new instance of EntityAlreadyExists.
Constructor Details
#initialize(row_key) ⇒ EntityAlreadyExists
Returns a new instance of EntityAlreadyExists.
33 34 35 |
# File 'lib/waz/tables/exceptions.rb', line 33 def initialize(row_key) super("The specified entity already exists. RowKey: #{row_key}") end |