N°6208 - Router: Move to Service folder

This commit is contained in:
Molkobain
2023-04-19 17:14:16 +02:00
parent e3252da5a9
commit f026e6f4b8
16 changed files with 47 additions and 43 deletions

View File

@@ -0,0 +1,24 @@
<?php
/*
* @copyright Copyright (C) 2010-2023 Combodo SARL
* @license http://opensource.org/licenses/AGPL-3.0
*/
namespace Combodo\iTop\Service\Router\Exception;
use Exception;
/**
* Class RouterException
*
* Base router exception class in case we need to catch all kind of router exceptions (see derived exceptions)
*
* @author Guillaume Lajarige <guillaume.lajarige@combodo.com>
* @package Combodo\iTop\Service\Router\Exception
* @since 3.1.0
* @internal
*/
class RouterException extends Exception
{
}