You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CancellationException.php 182 B

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