1
0
mirror of https://github.com/robonen/tools.git synced 2026-03-20 10:54:44 +00:00

feat(packages/vue): add custom error

This commit is contained in:
2024-10-05 22:02:03 +07:00
parent 2ff7196241
commit b525d08363
2 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
export class VueToolsError extends Error {
constructor(message: string) {
super(message);
this.name = 'VueToolsError';
}
}

View File

@@ -1 +1,2 @@
export * from './components'; export * from './components';
export * from './error';