UNPKG

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