UNPKG

redis-smq-common

Version:

Provides essential components and utilities shared across RedisSMQ packages.

10 lines 334 B
import { RedisSMQError } from '../../errors/index.js'; export class WorkerIsShuttingDownError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.Worker.ShuttingDown', defaultMessage: 'Worker is shutting down.', }; } } //# sourceMappingURL=worker-is-shutting-down.error.js.map