Exception: WAZ::Tables::TooManyProperties

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

Overview

This exception is raised when provided more than the 252 properties allowed by the Rest API.

Instance Method Summary collapse

Constructor Details

#initialize(total) ⇒ TooManyProperties

Returns a new instance of TooManyProperties.



26
27
28
# File 'lib/waz/tables/exceptions.rb', line 26

def initialize(total)
  super("The entity contains more properties than allowed (252). The entity has #{total} properties.")
end