Exception: WAZ::Tables::EntityAlreadyExists

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

Overview

This exception is raised when the specified entity already exists.

Instance Method Summary collapse

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