Files
n8n-enterprise-unlocked/packages/cli/src/errors/folder-not-found.error.ts
T

10 lines
227 B
TypeScript

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