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 479 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NotFoundError = void 0; const http_status_codes_1 = require("http-status-codes"); const http_error_1 = require("./http.error"); class NotFoundError extends http_error_1.HttpError { constructor(message, lastError = null) { super(message, http_status_codes_1.StatusCodes.NOT_FOUND, lastError); } } exports.NotFoundError = NotFoundError; //# sourceMappingURL=not-found.error.js.map