/
githubmirror
/
nest
Обзор
Документация
Войти
/
githubmirror
/
nest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
packages/core/errors/exceptions/unknown-module.exception.ts
11 строк
323 B
Micael Levi L. Cavalcante
feat(core): display module's name on `.select(module)` errors
13 дек 2023, 20:10
13 дек 2023, 20:10
6bb08b4
Код
Авторство
О чём код?
import { RuntimeException } from './runtime.exception'; export class UnknownModuleException extends RuntimeException { constructor(moduleName?: string) { super( `Nest could not select the given module (${ moduleName ? `"${moduleName}"` : 'it' } does not exist in current context).`, ); } }