n8cn / packages /cli /src /errors /redactable.error.ts
gallyga's picture
Add n8n Chinese version
aec3094
import { UnexpectedError } from 'n8n-workflow';
export class RedactableError extends UnexpectedError {
constructor(fieldName: string, args: string) {
super(
`Failed to find "${fieldName}" property in argument "${args.toString()}". Please set the decorator \`@Redactable()\` only on \`LogStreamingEventRelay\` methods where the argument contains a "${fieldName}" property.`,
);
}
}