class ServerNotInitializedException extends Error { public constructor() { super('Server not initialized'); this.name = 'ServerNotInitialized'; } } export { ServerNotInitializedException };