Move class in its own file

This commit is contained in:
Eric
2021-01-21 09:56:03 +01:00
parent 4816d1e943
commit 1fb15a421a
2 changed files with 13 additions and 4 deletions

View File

@@ -613,7 +613,3 @@ abstract class Controller
$this->m_oPage->output();
}
}
class PageNotFoundException extends Exception
{
}

View File

@@ -0,0 +1,13 @@
<?php
/**
* @copyright Copyright (C) 2010-2021 Combodo SARL
* @license http://opensource.org/licenses/AGPL-3.0
*/
namespace Combodo\iTop\Application\TwigBase\Controller;
use Exception;
class PageNotFoundException extends Exception
{
}