mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-16 09:34:07 -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}`);
|
|
}
|
|
}
|