UNPKG

redis-smq

Version:

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

10 lines 359 B
import { RedisSMQError } from 'redis-smq-common'; export class QueueStateTransitionError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.Queue.StateTransitionFailed', defaultMessage: 'An invalid queue state transition is attempted.', }; } } //# sourceMappingURL=queue-state-transition.error.js.map