UNPKG

@dxdeveloperexperience/hygie

Version:

Hygie is an easy-to-use Open-Source REST API allowing you to interact with GIT events. This NestJS API expose a set of customizable rules to automate your project's life cycle.

11 lines (9 loc) 248 B
import { HttpException, HttpStatus } from '@nestjs/common'; /** * Send a specific `HttpException` on etimedout */ export class TimedOutException extends HttpException { constructor() { super('Timed Out', HttpStatus.REQUEST_TIMEOUT); } }