typeorm
Version:
Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.
13 lines (11 loc) • 435 B
JavaScript
import { TypeORMError } from "./TypeORMError";
/**
* Thrown when circular relations detected with nullable set to false.
*/
export class CircularRelationsError extends TypeORMError {
constructor(path) {
super(`Circular relations detected: ${path}. To resolve this issue you need to ` +
`set nullable: true somewhere in this dependency structure.`);
}
}
//# sourceMappingURL=CircularRelationsError.js.map