Source: exceptions/EntityIsNotDestroyedException.js

goog.provide('entitas.exceptions.EntityIsNotDestroyedException');
goog.require('entitas.Exception');


__extends(EntityIsNotDestroyedException, _super);
/**
 * Entity Is Not Destroyed Exception
 * @constructor
 * @param message
 */
entitas.exceptions.EntityIsNotDestroyedException = function(message) {
  _super.call(this, message + "\nEntity is not destroyed yet!");
}