This commit is contained in:
Andras Schmelczer 2025-02-23 10:44:51 +00:00
parent 9f46af4a65
commit cd70f8b426
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
3 changed files with 76 additions and 75 deletions

View file

@ -2,7 +2,7 @@ import type { FileSystemOperations } from "dist/types";
import type { RelativePath } from "src/persistence/database";
export class FileNotFoundError extends Error {
constructor(message: string) {
public constructor(message: string) {
super(message);
this.name = "FileNotFoundError";
}