remove lists

This commit is contained in:
2018-05-17 12:13:14 +03:00
parent 5486b4582f
commit 8255ec05b9
4 changed files with 43 additions and 9 deletions

9
errors/index.js Normal file
View File

@@ -0,0 +1,9 @@
class NotFoundError extends Error {
constructor(...args) {
super(...args);
Error.captureStackTrace(this, NotFoundError);
this.name = 'NotFound';
}
}
module.exports = { NotFoundError };