n8n/packages/core/src/errors.ts

6 lines
134 B
TypeScript
Raw Normal View History

export class FileNotFoundError extends Error {
constructor(readonly filePath: string) {
super(`File not found: ${filePath}`);
}
}