summaryrefslogtreecommitdiff
path: root/vendor/guzzlehttp/promises/src/CancellationException.php
blob: ad8f51d48692d484ecc18f7143e2296e52bc64c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

declare(strict_types=1);

namespace GuzzleHttp\Promise;

/**
 * Exception that is set as the reason for a promise that has been cancelled.
 */
class CancellationException extends RejectionException
{
}