UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, 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