mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-25 19:41:14 -08: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}`);
|
|
}
|
|
}
|