CancellationException.php 182 B

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. }