UNPKG

redis-smq

Version:

A high-performance, reliable, and scalable message queue for Node.js.

10 lines 410 B
import { RedisSMQError } from 'redis-smq-common'; export class InvalidConfigurationError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.Configuration.Invalid', defaultMessage: 'Invalid configuration provided. The configuration object may be malformed or missing required properties.', }; } } //# sourceMappingURL=invalid-configuration.error.js.map