UNPKG

coffee-core

Version:

Coffee IT API core library

13 lines (10 loc) 249 B
import { HttpStatus } from '@nestjs/common'; export class StatusException extends Error { constructor( public readonly status: HttpStatus, public readonly message: string, public readonly type: string ) { super(message); } }