1<?php
2
3declare(strict_types=1);
4
5namespace GuzzleHttp\Promise;
6
7/**
8 * Exception that is set as the reason for a promise that has been cancelled.
9 */
10class CancellationException extends RejectionException
11{
12}
13