summaryrefslogtreecommitdiff
path: root/src/middleware/not-found-handler.js
blob: cb0ee514f80f7bddba0b561d61777c2c9782338e (plain)
1
2
3
4
5
6
7
8
9
'use strict';

const errors = require('feathers-errors');

module.exports = function() {
  return function(req, res, next) {
    next(new errors.NotFound('Page not found'));
  };
};