UNPKG

redis-smq-common

Version:

Provides essential components and utilities shared across RedisSMQ packages.

10 lines 338 B
import { RedisSMQError } from '../../errors/index.js'; export class WorkerThreadError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.Worker.WorkerThreadError', defaultMessage: 'A worker thread has encountered an error.', }; } } //# sourceMappingURL=worker-thread.error.js.map