diff --git a/frontend/sync-client/src/file-operations/file-not-found-error.ts b/frontend/sync-client/src/file-operations/file-not-found-error.ts new file mode 100644 index 00000000..63af7dab --- /dev/null +++ b/frontend/sync-client/src/file-operations/file-not-found-error.ts @@ -0,0 +1,6 @@ +export class FileNotFoundError extends Error { + public constructor(message: string) { + super(message); + this.name = "FileNotFoundError"; + } +}