UNPKG

conflakes

Version:

Manager of the configuration, may be depending on the environment, with the ability to import another config files defined inside themselves.

8 lines (7 loc) 348 B
import {FileLoaderLoadError} from "./FileLoaderLoadError"; export class FileLoaderImportCircularReferenceError extends FileLoaderLoadError { public constructor(resources: string[]) { let message = `Circular reference detected in "${resources[0]}" ("${resources.join(" > ")}" > "${resources[0]}"`; super(message); } }