UNPKG

typescript-express-starter

Version:
7 lines (5 loc) 230 B
import type { RequestHandler } from "express"; import { HttpException } from "@exceptions/http.exception"; export const NotFoundMiddleware: RequestHandler = (_req, _res, next) => { next(new HttpException(404, "Not Found")); };