Source: exceptions/MatcherException.js

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


__extends(MatcherException, _super);
/**
 * Matcher Exception
 * @constructor
 * @param matcher
 */
entitas.exceptions.MatcherException = function(matcher) {
  _super.call(this, "matcher.indices.length must be 1 but was " + matcher.indices.length);
}