element-plus/packages/utils/error.ts
2020-09-16 11:12:55 +08:00

15 lines
326 B
TypeScript

class ElementPlusError extends Error {
constructor(m: string) {
super(m)
this.name = 'ElementPlusError'
}
}
export default (scope: string, m: string) => {
throw new ElementPlusError(`[${scope}] ${m}`)
}
export function warn(scope: string, m: string) {
console.warn(new ElementPlusError(`[${scope}] ${m}`))
}