Unverified Commit e3c9a8fd authored by Grégoire Paris's avatar Grégoire Paris Committed by GitHub

Merge pull request #3991 from mitelg/extend-retryable-exception

Extend RetryableException from Throwable interface
parents f20ba141 6bf69766
...@@ -2,9 +2,13 @@ ...@@ -2,9 +2,13 @@
namespace Doctrine\DBAL\Exception; namespace Doctrine\DBAL\Exception;
use Throwable;
/** /**
* Marker interface for all exceptions where retrying the transaction makes sense. * Marker interface for all exceptions where retrying the transaction makes sense.
*
* @psalm-immutable
*/ */
interface RetryableException interface RetryableException extends Throwable
{ {
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment