redis-smq-common
Version:
Provides essential components and utilities shared across RedisSMQ packages.
14 lines • 556 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnsupportedClientError = void 0;
const index_js_1 = require("../../errors/index.js");
class UnsupportedClientError extends index_js_1.RedisSMQError {
getProps() {
return {
code: 'RedisSMQ.RedisClient.UnsupportedClient',
defaultMessage: 'Unsupported Redis client type. Supported types are: REDIS, IOREDIS.',
};
}
}
exports.UnsupportedClientError = UnsupportedClientError;
//# sourceMappingURL=unsupported.client.error.js.map