UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.

20 lines (18 loc) 776 B
import { TypeORMError } from "./TypeORMError"; /** * Thrown when relations specified in the find options were not found in the entities. */ export class FindRelationsNotFoundError extends TypeORMError { constructor(notFoundRelations) { super(); if (notFoundRelations.length === 1) { this.message = `Relation "${notFoundRelations[0]}" was not found; please check if it is correct and really exists in your entity.`; } else { this.message = `Relations ${notFoundRelations .map((relation) => `"${relation}"`) .join(", ")} were not found; please check if relations are correct and they exist in your entities.`; } } } //# sourceMappingURL=FindRelationsNotFoundError.js.map