UNPKG

322 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.NetSocketClosedException = void 0;
4/**
5 * @publicApi
6 */
7class NetSocketClosedException extends Error {
8 constructor() {
9 super(`The net socket is closed.`);
10 }
11}
12exports.NetSocketClosedException = NetSocketClosedException;