Exception.php 289 B

1234567891011121314
  1. <?php
  2. namespace Http\Client;
  3. use Psr\Http\Client\ClientExceptionInterface as PsrClientException;
  4. /**
  5. * Every HTTP Client related Exception must implement this interface.
  6. *
  7. * @author Márk Sági-Kazár <mark.sagikazar@gmail.com>
  8. */
  9. interface Exception extends PsrClientException
  10. {
  11. }