CancellationException.php 209 B

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