n8cn / packages /cli /src /errors /cache-errors /uncacheable-value.error.ts
gallyga's picture
Add n8n Chinese version
aec3094
import { UnexpectedError } from 'n8n-workflow';
export class UncacheableValueError extends UnexpectedError {
constructor(key: string) {
super('Value cannot be cached in Redis', {
extra: { key, hint: 'Does the value contain circular references?' },
});
}
}