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