/
githubmirror
/
nest
Обзор
Документация
Войти
/
githubmirror
/
nest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/microservices/errors/invalid-grpc-package.exception.ts
10 строк
281 B
Tony133
chore(microservices): mark facing apis public in microservices
09 фев 2023, 12:33
09 фев 2023, 12:33
0df4dca
Код
Авторство
О чём код?
import { RuntimeException } from '@nestjs/core/errors/exceptions/runtime.exception'; /** * @publicApi */ export class InvalidGrpcPackageException extends RuntimeException { constructor(name: string) { super(`The invalid gRPC package (package "${name}" not found)`); } }