mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-07-31 00:57:23 +02:00
6 lines
134 B
TypeScript
6 lines
134 B
TypeScript
export class FileNotFoundError extends Error {
|
|
constructor(readonly filePath: string) {
|
|
super(`File not found: ${filePath}`);
|
|
}
|
|
}
|