redis-smq-common
Version:
Provides essential components and utilities shared across RedisSMQ packages.
10 lines • 379 B
JavaScript
import { RedisSMQError } from '../../errors/index.js';
export class UnsupportedClientError extends RedisSMQError {
getProps() {
return {
code: 'RedisSMQ.RedisClient.UnsupportedClient',
defaultMessage: 'Unsupported Redis client type. Supported types are: REDIS, IOREDIS.',
};
}
}
//# sourceMappingURL=unsupported.client.error.js.map