goog.provide('entitas.exceptions.PoolDoesNotContainEntityException');
goog.require('entitas.Exception');
__extends(PoolDoesNotContainEntityException, _super);
/**
* Pool Does Not Contain Entity Exception
* @constructor
* @param entity
* @param message
*/
entitas.exceptions.PoolDoesNotContainEntityException = function(entity, message) {
_super.call(this, message + "\nPool does not contain entity " + entity);
}