1234567891011121314151617 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- const http_1 = require("../base/http");
- const i18n_1 = require("../base/i18n");
- class InternalServerErrorHandler extends http_1.Middleware {
- constructor() {
- super(...arguments);
- this.order = 10000;
- this.route = null;
- this.action = (err, req, res, next) => {
- this.context.logError(`${err.message}: ${err.stack}`);
- res.status(http_1.StatusCodes.INTERNAL_SERVER_ERROR).send((0, i18n_1.$$)('org.crazydoctor.expressts.httpError.500'));
- };
- }
- }
- exports.default = InternalServerErrorHandler;
- //# sourceMappingURL=InternalServerErrorHandler.js.map
|