animate add todo/filter selector

This commit is contained in:
2018-07-13 22:38:13 +03:00
parent 5cfb9673b0
commit e3e1efa521
14 changed files with 284 additions and 114 deletions

View File

@@ -4,6 +4,7 @@ class NotFoundError extends Error {
Error.captureStackTrace(this, NotFoundError);
this.name = 'NotFound';
this.text = text;
this.code = 404;
}
}
@@ -13,6 +14,7 @@ class BadRequestError extends Error {
Error.captureStackTrace(this, NotFoundError);
this.name = 'BadRequest';
this.text = text;
this.code = 400;
}
}