TransactionExplicitCommitNotAllowedException.php 353 B

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