Exception: Common::UnknownEntity

Inherits:
InvalidRequest show all
Defined in:
lib/common/cloudbox_exceptions.rb

Overview

Throws an exception if an entity is unknown.

Instance Method Summary collapse

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