Files
n8n-enterprise-unlocked/packages/core/src/errors.ts
T

6 lines
134 B
TypeScript

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