@studyportals/sp-r2d2
Version:
A framework that contains various components used when developing projects that will be deployed via AWS λ.
10 lines • 419 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EventTranslationError = void 0;
class EventTranslationError extends Error {
constructor(message = 'The translation of the Lambda event could not be carried out successfully') {
super(message);
}
}
exports.EventTranslationError = EventTranslationError;
//# sourceMappingURL=event-translation-error.class.js.map