notfound.js 153 B

1234567
  1. const notfoundHandler = (req, res, next) => {
  2. let err = new Error('Not Found');
  3. err.status = 404;
  4. next(err);
  5. };
  6. module.exports = notfoundHandler;