InvalidUriException.php 370 B

12345678910111213141516171819
  1. <?php
  2. declare(strict_types=1);
  3. namespace Sabre\Uri;
  4. /**
  5. * Invalid Uri.
  6. *
  7. * This is thrown when an attempt was made to use Sabre\Uri parse a uri that
  8. * it could not.
  9. *
  10. * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
  11. * @author Evert Pot (https://evertpot.com/)
  12. * @license http://sabre.io/license/
  13. */
  14. class InvalidUriException extends \Exception
  15. {
  16. }