mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-01 09:17:08 +02:00
10 lines
227 B
TypeScript
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',
|
|
});
|
|
}
|
|
}
|