dff7ad87f3e2ec0cb8317d591502182d97b0307ee08817d744cead37923cd5d8db7254106d4c1b5e66a21939f06d807f47399f6aa9f0c01dc626623beeaa8a 414 B

12345678910111213141516171819
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', { value: true });
  3. class ElementPlusError extends Error {
  4. constructor(m) {
  5. super(m);
  6. this.name = "ElementPlusError";
  7. }
  8. }
  9. function throwError(scope, m) {
  10. throw new ElementPlusError(`[${scope}] ${m}`);
  11. }
  12. function debugWarn(scope, message) {
  13. }
  14. exports.debugWarn = debugWarn;
  15. exports.throwError = throwError;
  16. //# sourceMappingURL=error.js.map