import { TypeORMError } from "./TypeORMError"; /** * Thrown when the per-migration transaction mode is overriden but the global transaction mode is set to "all". */ export class ForbiddenTransactionModeOverrideError extends TypeORMError { constructor(migrationsOverridingTransactionMode) { const migrationNames = migrationsOverridingTransactionMode.map((migration) => `"${migration.name}"`); super(`Migrations ${migrationNames.join(", ")} override the transaction mode, but the global transaction mode is "all"`); } } //# sourceMappingURL=ForbiddenTransactionModeOverrideError.js.map