Creazione tabella Product

This commit is contained in:
Paolo Arena
2020-12-21 02:16:42 +01:00
parent 9ee59c0fc1
commit 67d2872e61
21 changed files with 767 additions and 42 deletions

View File

@@ -0,0 +1,10 @@
class TypedError extends Error{
constructor(args,status,type,error){
super(args)
this.status=status
this.type=type
this.error = error
}
}
module.exports=TypedError