ServerNotInitializedException.ts 196 B

12345678
  1. class ServerNotInitializedException extends Error {
  2. public constructor() {
  3. super('Server not initialized');
  4. this.name = 'ServerNotInitialized';
  5. }
  6. }
  7. export { ServerNotInitializedException };