TDoG-Skin/vendor/doctrine/dbal/lib/Doctrine/DBAL/Exception/RetryableException.php
2024-08-17 19:13:54 +08:00

15 lines
224 B
PHP
Executable File

<?php
namespace Doctrine\DBAL\Exception;
use Throwable;
/**
* Marker interface for all exceptions where retrying the transaction makes sense.
*
* @psalm-immutable
*/
interface RetryableException extends Throwable
{
}