import { TypeORMError } from "./TypeORMError"; /** * Thrown if custom repository inherits Repository class however entity is not set in @EntityRepository decorator. */ export class CustomRepositoryCannotInheritRepositoryError extends TypeORMError { constructor(repository) { super(`Custom entity repository ${typeof repository === "function" ? repository.name : repository.constructor.name} ` + ` cannot inherit Repository class without entity being set in the @EntityRepository decorator.`); } } //# sourceMappingURL=CustomRepositoryCannotInheritRepositoryError.js.map