Files
apimacro/vendor/guzzlehttp/promises/src/CancellationException.php

13 lines
209 B
PHP
Raw Normal View History

2024-05-07 12:17:25 +02:00
<?php
2024-05-17 12:24:19 +00:00
declare(strict_types=1);
2024-05-07 12:17:25 +02:00
namespace GuzzleHttp\Promise;
/**
* Exception that is set as the reason for a promise that has been cancelled.
*/
class CancellationException extends RejectionException
{
}