@nestjs/microservices
Version:
Nest - modern, fast, powerful node.js web framework (@microservices)
13 lines (12 loc) • 322 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.NetSocketClosedException = void 0;
/**
* @publicApi
*/
class NetSocketClosedException extends Error {
constructor() {
super(`The net socket is closed.`);
}
}
exports.NetSocketClosedException = NetSocketClosedException;
;