@enter-at/lambda-handlers
Version:
An opinionated Typescript package that facilitates specifying AWS Lambda handlers including input validation, error handling and response formatting.
12 lines (11 loc) • 404 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InternalServerError = void 0;
const LambdaHandlerError_1 = require("./LambdaHandlerError");
class InternalServerError extends LambdaHandlerError_1.LambdaHandlerError {
constructor() {
super(...arguments);
this.name = "InternalServerError";
}
}
exports.InternalServerError = InternalServerError;