DatabaseTransactionCannotCommitAfterRollbackException.php in Drupal driver for SQL Server and SQL Azure 8
Same filename and directory in other branches
Namespace
Drupal\Driver\Database\sqlsrvFile
drivers/lib/Drupal/Driver/Database/sqlsrv/DatabaseTransactionCannotCommitAfterRollbackException.phpView source
<?php
/**
* @file
* Contains \Drupal\Driver\Database\sqlsrv\DatabaseTransactionCannotCommitAfterRollbackException.
*/
namespace Drupal\Driver\Database\sqlsrv;
use Drupal\Core\Database\TransactionException;
use Drupal\Core\Database\DatabaseException;
/**
* 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 DatabaseTransactionCannotCommitAfterRollbackException extends TransactionException implements DatabaseException {
}
Classes
Name | Description |
---|---|
DatabaseTransactionCannotCommitAfterRollbackException | Exception to deny attempts to explicitly manage transactions. |