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) 414 B
import { TypeORMError } from "./TypeORMError"; /** * Thrown when transaction is already started and user tries to run it again. */ export class TransactionAlreadyStartedError extends TypeORMError { constructor() { super(`Transaction already started for the given connection, commit current transaction before starting a new one.`); } } //# sourceMappingURL=TransactionAlreadyStartedError.js.map