UNPKG

@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.

11 lines 515 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.InvalidChannelException = void 0; const messaging_exception_1 = require("./messaging.exception"); class InvalidChannelException extends messaging_exception_1.MessagingException { constructor(expectedChannelConfigName) { super(`Invalid Channel. Expected Channel is [${expectedChannelConfigName}]`); } } exports.InvalidChannelException = InvalidChannelException; //# sourceMappingURL=invalid-channel.exception.js.map