Extract reset error

This commit is contained in:
Andras Schmelczer 2025-03-22 17:07:04 +00:00
parent 8a27987798
commit a937f64fa0
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
2 changed files with 8 additions and 2 deletions

View file

@ -0,0 +1,6 @@
export class SyncResetError extends Error {
constructor() {
super("Sync was reset");
this.name = "SyncResetError";
}
}