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