| 
<?php
 /**
 * URI.php - URI detection error
 *
 * This exception is thrown when the URI cannot be autmatically detected.
 *
 * @package jaxon-core
 * @author Thierry Feuzeu <[email protected]>
 * @copyright 2016 Thierry Feuzeu <[email protected]>
 * @license https://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License
 * @link https://github.com/jaxon-php/jaxon-core
 */
 
 namespace Jaxon\Exception;
 
 use Exception;
 
 class URI extends Exception
 {
 }
 
 |