Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
TransactionExplicitCommitNotAllowedException | |
100.00% |
1 / 1 |
|
100.00% |
0 / 0 |
0 | |
100.00% |
0 / 0 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\Core\Database\TransactionExplicitCommitNotAllowedException. | |
*/ | |
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 { } |