error-advisor
Version:
NPM module that aim to facilitate the error handling by providing http errors classes and also let you customize business errors as well with handy and clean way.
15 lines • 605 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const StatusCode_1 = require("../../enum/StatusCode");
class InternalServerError extends Error {
constructor(message) {
message = message || "Request cannot be fulfilled - Internal server error.";
super(message);
this.name = "Internal Server Error";
this.statusCode = StatusCode_1.StatusCode.INTERNAL_SERVER_ERROR;
this.type = this.name;
this.timestamp = +new Date();
}
}
exports.default = InternalServerError;
//# sourceMappingURL=InternalServerError.js.map