@nestjs/core
Version:
Nest - modern, fast, powerful node.js web framework (@core)
11 lines (10 loc) • 435 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnknownModuleException = void 0;
const runtime_exception_1 = require("./runtime.exception");
class UnknownModuleException extends runtime_exception_1.RuntimeException {
constructor() {
super('Nest could not select the given module (it does not exist in current context)');
}
}
exports.UnknownModuleException = UnknownModuleException;
;