UNPKG

typeorm

Version:

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

12 lines (10 loc) 357 B
import { TypeORMError } from "./TypeORMError"; /** * Thrown . Theoretically can't be thrown. */ export class PersistedEntityNotFoundError extends TypeORMError { constructor() { super(`Internal error. Persisted entity was not found in the list of prepared operated entities.`); } } //# sourceMappingURL=PersistedEntityNotFoundError.js.map