logbook/class/core/config/ConfigException.class.php
linarphy a8aa60ae83
Fix following first run
The code 'works' as is
2025-04-15 21:03:44 +02:00

20 lines
426 B
PHP

<?php
namespace core\config;
/**
* Exception on config parsing/processing
*/
class ConfigException extends \core\exception\CustomException
{
public function __construct(?string $message = null, int $code = 0, ?\Throwable $previous = null, ?array $tags = null)
{
$this->tags = array(
new \core\log\tags\Error(),
new \core\log\tags\Config(),
);
parent::__construct($message, $code, $previous, $tags);
}
}
?>