TransactionExplicitCommitNotAllowedException.php in Drupal 8
Same filename and directory in other branches
Namespace
Drupal\Core\DatabaseFile
core/lib/Drupal/Core/Database/TransactionExplicitCommitNotAllowedException.phpView source
<?php
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
Name | Description |
---|---|
TransactionExplicitCommitNotAllowedException | Exception to deny attempts to explicitly manage transactions. |