goog.provide('entitas.exceptions.SingleEntityException');
goog.require('entitas.Exception');
__extends(SingleEntityException, _super);
/**
* Single Entity Exception
* @constructor
* @param matcher
*/
entitas.exceptions.SingleEntityException = function(matcher) {
_super.call(this, "Multiple entities exist matching " + matcher);
}