diff options
Diffstat (limited to 'vendor/guzzlehttp/promises/src/CancellationException.php')
-rw-r--r-- | vendor/guzzlehttp/promises/src/CancellationException.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/guzzlehttp/promises/src/CancellationException.php b/vendor/guzzlehttp/promises/src/CancellationException.php new file mode 100644 index 0000000..56a1ed6 --- /dev/null +++ b/vendor/guzzlehttp/promises/src/CancellationException.php @@ -0,0 +1,10 @@ +<?php + +namespace GuzzleHttp\Promise; + +/** + * Exception that is set as the reason for a promise that has been cancelled. + */ +class CancellationException extends RejectionException +{ +} |