Exception: WAZ::Tables::TooManyProperties
- Inherits:
-
Storage::StorageException
- Object
- StandardError
- Storage::StorageException
- WAZ::Tables::TooManyProperties
- 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
-
#initialize(total) ⇒ TooManyProperties
constructor
A new instance of TooManyProperties.
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 |