UNPKG

501 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.UndefinedModuleException = void 0;
4const runtime_exception_1 = require("./runtime.exception");
5const messages_1 = require("../messages");
6class UndefinedModuleException extends runtime_exception_1.RuntimeException {
7 constructor(parentModule, index, scope) {
8 super((0, messages_1.UNDEFINED_MODULE_MESSAGE)(parentModule, index, scope));
9 }
10}
11exports.UndefinedModuleException = UndefinedModuleException;