@thisisagile/easy-express
Version:
Straightforward library for building domain-driven microservice architectures
8 lines (6 loc) • 309 B
text/typescript
import { NextFunction, Request, Response } from 'express';
import { Exception } from '@thisisagile/easy';
import { toOriginatedError } from '@thisisagile/easy-service';
export const notFound = (req: Request, res: Response, next: NextFunction): void => {
next(toOriginatedError(Exception.DoesNotExist));
};