diff options
Diffstat (limited to 'vendor/doctrine/dbal/src/Exception/DeadlockException.php')
| -rw-r--r-- | vendor/doctrine/dbal/src/Exception/DeadlockException.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/vendor/doctrine/dbal/src/Exception/DeadlockException.php b/vendor/doctrine/dbal/src/Exception/DeadlockException.php new file mode 100644 index 0000000..9000387 --- /dev/null +++ b/vendor/doctrine/dbal/src/Exception/DeadlockException.php | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | <?php | ||
| 2 | |||
| 3 | declare(strict_types=1); | ||
| 4 | |||
| 5 | namespace Doctrine\DBAL\Exception; | ||
| 6 | |||
| 7 | /** | ||
| 8 | * Exception for a deadlock error of a transaction detected in the driver. | ||
| 9 | * | ||
| 10 | * @psalm-immutable | ||
| 11 | */ | ||
| 12 | class DeadlockException extends ServerException implements RetryableException | ||
| 13 | { | ||
| 14 | } | ||
