vault-link/frontend/sync-client/src/services/server-version-mismatch-error.ts

6 lines
180 B
TypeScript

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