UNPKG

587 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.CircularDependencyException = void 0;
4class CircularDependencyException extends Error {
5 constructor(context) {
6 const ctx = context ? ` inside ${context}` : ``;
7 super(`A circular dependency has been detected${ctx}. Please, make sure that each side of a bidirectional relationships are decorated with "forwardRef()". Also, try to eliminate barrel files because they can lead to an unexpected behavior too.`);
8 }
9}
10exports.CircularDependencyException = CircularDependencyException;