UNPKG

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