UNPKG

454 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.InvalidSocketPortException = void 0;
4const runtime_exception_1 = require("@nestjs/core/errors/exceptions/runtime.exception");
5class InvalidSocketPortException extends runtime_exception_1.RuntimeException {
6 constructor(port, type) {
7 super(`Invalid port (${port}) in gateway ${type}`);
8 }
9}
10exports.InvalidSocketPortException = InvalidSocketPortException;