Files
aihot/frontend/node_modules/element-plus/es/utils/error.mjs
2026-05-26 12:56:03 +08:00

21 lines
516 B
JavaScript

import { isString } from "./types.mjs";
//#region ../../packages/utils/error.ts
var ElementPlusError = class extends Error {
constructor(m) {
super(m);
this.name = "ElementPlusError";
}
};
function throwError(scope, m) {
throw new ElementPlusError(`[${scope}] ${m}`);
}
function debugWarn(scope, message) {
{
const error = isString(scope) ? new ElementPlusError(`[${scope}] ${message}`) : scope;
console.warn(error);
}
}
//#endregion
export { debugWarn, throwError };
//# sourceMappingURL=error.mjs.map