UNPKG

@nestjs/core

Version:

Nest - modern, fast, powerful node.js web framework (@core)

7 lines (6 loc) 295 B
import { RuntimeException } from './runtime.exception.js'; export class UnknownModuleException extends RuntimeException { constructor(moduleName) { super(`Nest could not select the given module (${moduleName ? `"${moduleName}"` : 'it'} does not exist in current context).`); } }