5c9f48b6537fa20ce91ae9a8e5b59c35f2c4c86d040de63a1a1c5fe105430e8eb6dae9d330b9860a8a9610c04be25a88b4248566fc776de8e2f5960aea5858 306 B

1234567891011121314
  1. class ElementPlusError extends Error {
  2. constructor(m) {
  3. super(m);
  4. this.name = "ElementPlusError";
  5. }
  6. }
  7. function throwError(scope, m) {
  8. throw new ElementPlusError(`[${scope}] ${m}`);
  9. }
  10. function debugWarn(scope, message) {
  11. }
  12. export { debugWarn, throwError };
  13. //# sourceMappingURL=error.mjs.map