@mbc-cqrs-serverless/core
Version:
CQRS and event base core
10 lines • 418 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EventHandlerNotFoundException = void 0;
class EventHandlerNotFoundException extends Error {
constructor(eventName) {
super(`The event handler for the "${eventName}" event was not found!`);
}
}
exports.EventHandlerNotFoundException = EventHandlerNotFoundException;
//# sourceMappingURL=event-not-found.exception.js.map