You are here

TransactionExplicitCommitNotAllowedException.php in Zircon Profile 8

File

core/lib/Drupal/Core/Database/TransactionExplicitCommitNotAllowedException.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Core\Database\TransactionExplicitCommitNotAllowedException.
 */
namespace Drupal\Core\Database;


/**
 * Exception to deny attempts to explicitly manage transactions.
 *
 * This exception will be thrown when the PDO connection commit() is called.
 * Code should never call this method directly.
 */
class TransactionExplicitCommitNotAllowedException extends TransactionException implements DatabaseException {

}

Classes

Namesort descending Description
TransactionExplicitCommitNotAllowedException Exception to deny attempts to explicitly manage transactions.