Home Reference Source Test

src/middlewares/not-found-error.js

import * as errors from '../utils/api-error.js';

const { NotFoundError } = errors.default;

export default async (req, res, next) => next(new NotFoundError());