@nestjstools/messaging
Version:
Simplifies asynchronous and synchronous message handling with support for buses, handlers, channels, and consumers. Build scalable, decoupled applications with ease and reliability.
13 lines • 453 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExceptionContext = void 0;
class ExceptionContext {
constructor(exception, channelName, rawMessage, routingKey) {
this.exception = exception;
this.channelName = channelName;
this.rawMessage = rawMessage;
this.routingKey = routingKey;
}
}
exports.ExceptionContext = ExceptionContext;
//# sourceMappingURL=exception-context.js.map