UNPKG

serverless-offline-edge-lambda

Version:

A plugin for the Serverless Framework that simulates the behavior of AWS CloudFront Edge Lambdas while developing offline.

12 lines 521 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.InternalServerError = void 0; const http_status_codes_1 = require("http-status-codes"); const http_error_1 = require("./http.error"); class InternalServerError extends http_error_1.HttpError { constructor(message, lastError = null) { super(message, http_status_codes_1.StatusCodes.INTERNAL_SERVER_ERROR, lastError); } } exports.InternalServerError = InternalServerError; //# sourceMappingURL=internal-server.error.js.map