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