RetryableException.php 167 B

12345678910
  1. <?php
  2. namespace Doctrine\DBAL\Exception;
  3. /**
  4. * Marker interface for all exceptions where retrying the transaction makes sense.
  5. */
  6. interface RetryableException
  7. {
  8. }