http-status.exception.ts 127 B

12345
  1. export class HttpStatusException extends Error {
  2. constructor(msg: string, public statusCode: number) {
  3. super(msg);
  4. }
  5. }