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) 277 B
import { HttpException, HttpStatus } from '@nestjs/common'; /** * Send a specific `HttpException` when preconditions fail */ export class PreconditionException extends HttpException { constructor() { super('Precondition Failed', HttpStatus.PRECONDITION_FAILED); } }