typeorm
Version:
Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.
16 lines (14 loc) • 594 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.TransactionNotStartedError = void 0;
const TypeORMError_1 = require("./TypeORMError");
/**
* Thrown when transaction is not started yet and user tries to run commit or rollback.
*/
class TransactionNotStartedError extends TypeORMError_1.TypeORMError {
constructor() {
super(`Transaction is not started yet, start transaction before committing or rolling it back.`);
}
}
exports.TransactionNotStartedError = TransactionNotStartedError;
//# sourceMappingURL=TransactionNotStartedError.js.map
;