File size: 321 Bytes
677259a
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import http from "http";

export class HttpError extends Error {
  status: number;
  constructor(status: number, message?: string | object) {
    if (typeof message === "object") {
      message = JSON.stringify(message);
    }

    super(message || http.STATUS_CODES[status] || "Error");
    this.status = status;
  }
}