@mbc-cqrs-serverless/core
Version:
CQRS and event base core
10 lines • 418 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvalidEventHandlerException = void 0;
class InvalidEventHandlerException extends Error {
constructor() {
super(`Invalid event handler exception (missing @EventHandler() decorator?)`);
}
}
exports.InvalidEventHandlerException = InvalidEventHandlerException;
//# sourceMappingURL=invalid-event-handler.exception.js.map