blob: 2e8158037a6fdef96c7bb2284eaed23a6cd49971 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
declare(strict_types=1);
namespace Doctrine\DBAL\Exception;
/**
* Exception for a lock wait timeout error of a transaction detected in the driver.
*
* @psalm-immutable
*/
class LockWaitTimeoutException extends ServerException implements RetryableException
{
}
|