1 2 3 4 5 6 7 8 | 1x 1x 1x | import { RuntimeException } from '@nestjs/core/errors/exceptions/runtime.exception'; export class InvalidSocketPortException extends RuntimeException { constructor(port, type) { super(`Invalid port (${port}) in Gateway ${type}!`); } } |