Extract error

This commit is contained in:
Andras Schmelczer 2025-03-22 12:01:15 +00:00
parent 16aac488cc
commit 087d38f570
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C

View file

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