TDoG-Skin/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/RetryableException.php

15 lines
224 B
PHP
Raw Normal View History

2024-08-17 18:43:48 +08:00
<?php
namespace Doctrine\DBAL\Exception;
use Throwable;
/**
* Marker interface for all exceptions where retrying the transaction makes sense.
*
* @psalm-immutable
*/
interface RetryableException extends Throwable
{
}