Remove duplicate errors

This commit is contained in:
Andras Schmelczer 2026-03-28 12:07:57 +00:00
parent 1c6cd80b64
commit f3d985cc57
5 changed files with 2 additions and 29 deletions

View file

@ -1,9 +0,0 @@
export class FileNotFoundError extends Error {
public constructor(
message: string,
public readonly filePath: string
) {
super(message);
this.name = "FileNotFoundError";
}
}