1: <?php
2:
3: namespace HZSystem\Core\Logger\Exceptions;
4:
5: use HZSystem\Exceptions\HZException;
6:
7: /*
8: * Copyright (C) 2021 HZKnight
9: *
10: * This program is free software: you can redistribute it and/or modify
11: * it under the terms of the GNU Affero General Public License as published by
12: * the Free Software Foundation, either version 3 of the License, or
13: * (at your option) any later version.
14: *
15: * This program is distributed in the hope that it will be useful,
16: * but WITHOUT ANY WARRANTY; without even the implied warranty of
17: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: * GNU Affero General Public License for more details.
19: *
20: * You should have received a copy of the GNU Affero General Public License
21: * along with this program. If not, see <http://www.gnu.org/licenses/agpl-3.0.html>.
22: */
23:
24: /**
25: * questa eccezione si verifica quando si prova a richiamare un log file che non esiste
26: *
27: * @author Luca Liscio <lucliscio@h0model.org>
28: * @version 0.0.1 2015/12/19 16:41:20
29: * @copyright 2021 HZKnight
30: * @license http://www.gnu.org/licenses/agpl-3.0.html GNU/AGPL3
31: *
32: * @package hzSystem
33: * @subpackage Core\Logger\Exception
34: * @filesource
35: */
36:
37: class LogFileNotFoundException extends HZException{
38: protected $code = "L02";
39: }