UNPKG

redis-smq-common

Version:

Provides essential components and utilities shared across RedisSMQ packages.

10 lines 318 B
import { RedisSMQError } from './redis-smq.error.js'; export class PanicError extends RedisSMQError { getProps() { return { code: 'RedisSMQ.Panic', defaultMessage: 'Fatal error. The system may be in an inconsistent state.', }; } } //# sourceMappingURL=panic.error.js.map