File size: 252 Bytes
a0fda44
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
module.exports = class extends Error {
  constructor(statusCode, message) {
    super(message);
    this.statusCode = statusCode;
    this.status = this.statusCode >= 500 ? "fail" : "error";

    Error.captureStackTrace(this, this.constructor);
  }
};