Files
directus/api/src/controllers/not-found.ts
2020-08-15 16:56:45 -06:00

9 lines
228 B
TypeScript

import { RequestHandler } from 'express';
import { RouteNotFoundException } from '../exceptions';
const notFound: RequestHandler = (req, res, next) => {
throw new RouteNotFoundException(req.path);
};
export default notFound;