ClientExceptionInterface.php 171 B

12345678910
  1. <?php
  2. namespace Psr\Http\Client;
  3. /**
  4. * Every HTTP client related exception MUST implement this interface.
  5. */
  6. interface ClientExceptionInterface extends \Throwable
  7. {
  8. }