import { TypeORMError } from "./TypeORMError"; import { ObjectUtils } from "../util/ObjectUtils"; import { InstanceChecker } from "../util/InstanceChecker"; /** * Thrown when repository for the given class is not found. */ export class RepositoryNotTreeError extends TypeORMError { constructor(entityClass) { super(); let targetName; if (InstanceChecker.isEntitySchema(entityClass)) { targetName = entityClass.options.name; } else if (typeof entityClass === "function") { targetName = entityClass.name; } else if (ObjectUtils.isObject(entityClass) && "name" in entityClass) { targetName = entityClass.name; } else { targetName = entityClass; } this.message = `Repository of the "${targetName}" class is not a TreeRepository. Try to apply @Tree decorator on your entity.`; } } //# sourceMappingURL=RepositoryNotTreeError.js.map