Extract errors into module

This commit is contained in:
Andras Schmelczer 2025-12-14 14:37:30 +00:00
parent d13abc115d
commit a21b1e8c03
12 changed files with 11 additions and 11 deletions

View file

@ -0,0 +1,6 @@
export class ServerVersionMismatchError extends Error {
public constructor(message: string) {
super(message);
this.name = "ServerVersionMismatchError";
}
}