UNPKG

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 653 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const StatusCode_1 = require("../../enum/StatusCode"); class RequestHeaderFieldsTooLarge extends Error { constructor(message) { message = message || "Request cannot be fulfilled - HTTP headers are too long."; super(message); this.name = "Request Header Fields Too Large"; this.statusCode = StatusCode_1.StatusCode.REQUEST_HEADER_FIELDS_TOO_LARGE; this.type = this.name; this.timestamp = +new Date(); } } exports.default = RequestHeaderFieldsTooLarge; //# sourceMappingURL=RequestHeaderFieldsTooLarge.js.map