Exception: WAZ::Tables::InvalidTableName

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

Overview

This exception is raised when an invalid table name is provided.

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ InvalidTableName

Returns a new instance of InvalidTableName.



19
20
21
# File 'lib/waz/tables/exceptions.rb', line 19

def initialize(name)
  super("The table name #{name} is invalid, it must start with at least one lower/upper characted, must be from 3 through 63 characters long and can have character or any digit starting from the second position")
end