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