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