LockWaitTimeoutException.php 224 B

12345678910
  1. <?php
  2. namespace Doctrine\DBAL\Exception;
  3. /**
  4. * Exception for a lock wait timeout error of a transaction detected in the driver.
  5. */
  6. class LockWaitTimeoutException extends ServerException implements RetryableException
  7. {
  8. }