ServerNotInitializedException.js 418 B

1234567891011
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.ServerNotInitializedException = void 0;
  4. class ServerNotInitializedException extends Error {
  5. constructor() {
  6. super('Server not initialized');
  7. this.name = 'ServerNotInitialized';
  8. }
  9. }
  10. exports.ServerNotInitializedException = ServerNotInitializedException;
  11. //# sourceMappingURL=ServerNotInitializedException.js.map