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