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) 396 B
import { TypeORMError } from "./TypeORMError"; /** * Thrown when transaction is not started yet and user tries to run commit or rollback. */ export class TransactionNotStartedError extends TypeORMError { constructor() { super(`Transaction is not started yet, start transaction before committing or rolling it back.`); } } //# sourceMappingURL=TransactionNotStartedError.js.map