n8cn / packages /cli /src /errors /folder-not-found.error.ts
gallyga's picture
Add n8n Chinese version
aec3094
import { OperationalError } from 'n8n-workflow';
export class FolderNotFoundError extends OperationalError {
constructor(folderId: string) {
super(`Could not find the folder: ${folderId}`, {
level: 'warning',
});
}
}