File size: 227 Bytes
aec3094
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { OperationalError } from 'n8n-workflow';

export class FolderNotFoundError extends OperationalError {
	constructor(folderId: string) {
		super(`Could not find the folder: ${folderId}`, {
			level: 'warning',
		});
	}
}