UNPKG

@tmlmobilidade/lib

Version:
13 lines (12 loc) 334 B
/* * */ import { HttpStatus } from './http-status.js'; /* * */ export class HttpException extends Error { statusCode; constructor(statusCode, message, cause) { super(message); this.statusCode = statusCode || HttpStatus.INTERNAL_SERVER_ERROR; this.message = message; this.cause = cause; } }