ClientException.php 386 B

1234567891011121314151617
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sabre\HTTP;
  4. /**
  5. * This exception may be emitted by the HTTP\Client class, in case there was a
  6. * problem emitting the request.
  7. *
  8. * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
  9. * @author Evert Pot (http://evertpot.com/)
  10. * @license http://sabre.io/license/ Modified BSD License
  11. */
  12. class ClientException extends \Exception
  13. {
  14. }