1b4710eb5e46ddabb65ef8a54d69b04e35be9af3
[yaffs-website] / web / core / lib / Drupal / Core / Database / TransactionExplicitCommitNotAllowedException.php
1 <?php
2
3 namespace Drupal\Core\Database;
4
5 /**
6  * Exception to deny attempts to explicitly manage transactions.
7  *
8  * This exception will be thrown when the PDO connection commit() is called.
9  * Code should never call this method directly.
10  */
11 class TransactionExplicitCommitNotAllowedException extends TransactionException implements DatabaseException { }