init mydrive-3 commit

This commit is contained in:
kyle hoell
2020-11-23 21:51:08 -05:00
parent f384c93bdc
commit 938d5698a4
2026 changed files with 154094 additions and 2817 deletions
+12
View File
@@ -0,0 +1,12 @@
class NotValidDataError extends Error {
code: number;
constructor(args: any) {
super(args);
this.code = 403;
}
}
export default NotValidDataError;