6 lines
125 B
TypeScript
6 lines
125 B
TypeScript
export class SyncResetError extends Error {
|
|
constructor() {
|
|
super("Sync was reset");
|
|
this.name = "SyncResetError";
|
|
}
|
|
}
|