mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
25 lines
525 B
PHP
25 lines
525 B
PHP
<?php
|
|
|
|
/*
|
|
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
|
* @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
|
|
{
|
|
}
|