import { RuntimeException } from'./runtime.exception.js';
exportclassUnknownModuleExceptionextendsRuntimeException {
constructor(moduleName) {
super(`Nest could not select the given module (${moduleName ? `"${moduleName}"` : 'it'} does not exist in current context).`);
}
}