@allgemein/eventbus
Version:
11 lines • 428 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NoRedisConnectionError = void 0;
class NoRedisConnectionError extends Error {
constructor(msg) {
super(`no redis connection established${msg ? ' ' + msg : ''}`);
Object.setPrototypeOf(this, Error.prototype);
}
}
exports.NoRedisConnectionError = NoRedisConnectionError;
//# sourceMappingURL=NoRedisConnectionError.js.map