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) • 538 B
JavaScript
import { TypeORMError } from "./TypeORMError";
/**
* Thrown when same object is scheduled for remove and updation at the same time.
*/
export class SubjectRemovedAndUpdatedError extends TypeORMError {
constructor(subject) {
super(`Removed entity "${subject.metadata.name}" is also scheduled for update operation. ` +
`Make sure you are not updating and removing same object (note that update or remove may be executed by cascade operations).`);
}
}
//# sourceMappingURL=SubjectRemovedAndUpdatedError.js.map