@nestjs/core
Version:
Nest - modern, fast, powerful node.js web framework (@core)
12 lines (11 loc) • 479 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.UndefinedForwardRefException = void 0;
const messages_1 = require("../messages");
const runtime_exception_1 = require("./runtime.exception");
class UndefinedForwardRefException extends runtime_exception_1.RuntimeException {
constructor(scope) {
super((0, messages_1.UNDEFINED_FORWARDREF_MESSAGE)(scope));
}
}
exports.UndefinedForwardRefException = UndefinedForwardRefException;
;