File size: 266 Bytes
aec3094
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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?' },
		});
	}
}