redis-smq-common
Version:
RedisSMQ Common Library provides many components that are mainly used by RedisSMQ and RedisSMQ Monitor.
7 lines • 316 B
JavaScript
import { RedisServerError } from './redis-server.error.js';
export class RedisServerBinaryNotFoundError extends RedisServerError {
constructor() {
super(`A Redis server binary could not be found. Please set up Redis server first.`);
}
}
//# sourceMappingURL=redis-server-binary-not-found.error.js.map