1
This commit is contained in:
14
admin/node_modules/element-plus/es/utils/error.mjs
generated
vendored
Normal file
14
admin/node_modules/element-plus/es/utils/error.mjs
generated
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
class ElementPlusError extends Error {
|
||||
constructor(m) {
|
||||
super(m);
|
||||
this.name = "ElementPlusError";
|
||||
}
|
||||
}
|
||||
function throwError(scope, m) {
|
||||
throw new ElementPlusError(`[${scope}] ${m}`);
|
||||
}
|
||||
function debugWarn(scope, message) {
|
||||
}
|
||||
|
||||
export { debugWarn, throwError };
|
||||
//# sourceMappingURL=error.mjs.map
|
||||
Reference in New Issue
Block a user