goog.provide('entitas.exceptions.EntityIsAlreadyReleasedException');
goog.require('entitas.Exception');
__extends(EntityIsAlreadyReleasedException, _super);
/**
* Entity Is Already Released Exception
* @constructor
*/
entitas.exceptions.EntityIsAlreadyReleasedException = function() {
_super.call(this, "Entity is already released!");
}