Exception: Common::UnknownEntity
- Inherits:
-
InvalidRequest
- Object
- StandardError
- CloudboxError
- InvalidRequest
- Common::UnknownEntity
- Defined in:
- lib/common/cloudbox_exceptions.rb
Overview
Throws an exception if an entity is unknown.
Instance Method Summary collapse
-
#initialize(entityType, entityName) ⇒ UnknownEntity
constructor
A new instance of UnknownEntity.
Constructor Details
#initialize(entityType, entityName) ⇒ UnknownEntity
Returns a new instance of UnknownEntity.
398 399 400 |
# File 'lib/common/cloudbox_exceptions.rb', line 398 def initialize(entityType, entityName) super("Unkown " + entityType + " " + entityName + ".") end |