summaryrefslogtreecommitdiffstats
path: root/vendor/guzzlehttp/psr7/src/Exception/MalformedUriException.php
blob: 3a084779a8d5f24389994ca60a306fd04f2965dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

declare(strict_types=1);

namespace GuzzleHttp\Psr7\Exception;

use InvalidArgumentException;

/**
 * Exception thrown if a URI cannot be parsed because it's malformed.
 */
class MalformedUriException extends InvalidArgumentException
{
}