MalformedUriException.php 245 B

1234567891011121314
  1. <?php
  2. declare(strict_types=1);
  3. namespace GuzzleHttp\Psr7\Exception;
  4. use InvalidArgumentException;
  5. /**
  6. * Exception thrown if a URI cannot be parsed because it's malformed.
  7. */
  8. class MalformedUriException extends InvalidArgumentException
  9. {
  10. }