RetryableException.php 224 B

1234567891011121314
  1. <?php
  2. namespace Doctrine\DBAL\Exception;
  3. use Throwable;
  4. /**
  5. * Marker interface for all exceptions where retrying the transaction makes sense.
  6. *
  7. * @psalm-immutable
  8. */
  9. interface RetryableException extends Throwable
  10. {
  11. }