vault-link/frontend/sync-client/src/file-operations/file-not-found-error.ts
2025-03-22 12:01:15 +00:00

6 lines
144 B
TypeScript

export class FileNotFoundError extends Error {
public constructor(message: string) {
super(message);
this.name = "FileNotFoundError";
}
}