1 | ;
|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
3 | exports.EmptyResponseException = void 0;
|
4 | /**
|
5 | * @publicApi
|
6 | */
|
7 | class EmptyResponseException extends Error {
|
8 | constructor(pattern) {
|
9 | super(`Empty response. There are no subscribers listening to that message ("${pattern}")`);
|
10 | }
|
11 | }
|
12 | exports.EmptyResponseException = EmptyResponseException;
|