Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[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 {}