1234567891011 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.ServerNotInitializedException = void 0;
- class ServerNotInitializedException extends Error {
- constructor() {
- super('Server not initialized');
- this.name = 'ServerNotInitialized';
- }
- }
- exports.ServerNotInitializedException = ServerNotInitializedException;
- //# sourceMappingURL=ServerNotInitializedException.js.map
|