UNPKG

redis-smq-common

Version:

Provides essential components and utilities shared across RedisSMQ packages.

10 lines 337 B
import { RedisSMQError } from '../../errors/index.js'; export class WorkerAlreadyRunningError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.Worker.AlreadyRunning', defaultMessage: 'Worker is already running.', }; } } //# sourceMappingURL=worker-already-running.error.js.map