UNPKG

435 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.UnknownModuleException = void 0;
4const runtime_exception_1 = require("./runtime.exception");
5class UnknownModuleException extends runtime_exception_1.RuntimeException {
6 constructor() {
7 super('Nest could not select the given module (it does not exist in current context)');
8 }
9}
10exports.UnknownModuleException = UnknownModuleException;