FileinfoSupportMissing.php
2 years ago
IdnSupportMissing.php
2 years ago
IdnaConversionFailed.php
2 years ago
SyntaxError.php
2 years ago
SyntaxError.php
19 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * League.Uri (https://uri.thephpleague.com) |
| 5 | * |
| 6 | * (c) Ignace Nyamagana Butera <nyamsprod@gmail.com> |
| 7 | * |
| 8 | * For the full copyright and license information, please view the LICENSE |
| 9 | * file that was distributed with this source code. |
| 10 | */ |
| 11 | declare (strict_types=1); |
| 12 | namespace IAWPSCOPED\League\Uri\Exceptions; |
| 13 | |
| 14 | use IAWPSCOPED\League\Uri\Contracts\UriException; |
| 15 | /** @internal */ |
| 16 | class SyntaxError extends \InvalidArgumentException implements UriException |
| 17 | { |
| 18 | } |
| 19 |