Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@nestjs/core / errors / exceptions / unknown-module.exception.js
Size: Mime:
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
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;