UNPKG

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