UNPKG

@n8n/typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports PostgreSQL and SQLite databases.

14 lines (12 loc) 506 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.TransactionCommitFailedError = void 0; const TypeORMError_1 = require("./TypeORMError"); /** Thrown when transaction commit fails */ class TransactionCommitFailedError extends TypeORMError_1.TypeORMError { constructor(cause) { super("Transaction commit failed", { cause }); } } exports.TransactionCommitFailedError = TransactionCommitFailedError; //# sourceMappingURL=TransactionCommitFailedError.js.map