/
githubmirror
/
nest
Обзор
Документация
Войти
/
githubmirror
/
nest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/microservices/errors/empty-response.exception.ts
10 строк
222 B
Tony133
chore(microservices): mark facing apis public
12 фев 2023, 13:25
12 фев 2023, 13:25
b1398ec
Код
Авторство
О чём код?
/** * @publicApi */ export class EmptyResponseException extends Error { constructor(pattern: string) { super( `Empty response. There are no subscribers listening to that message ("${pattern}")`, ); } }