friendica/src/Core/Config/Exception/ConfigFileException.php
2021-10-26 22:11:09 +02:00

13 lines
261 B
PHP

<?php
namespace Friendica\Core\Config\Exception;
use Throwable;
class ConfigFileException extends \RuntimeException
{
public function __construct($message = "", $code = 0, Throwable $previous = null)
{
parent::__construct($message, 500, $previous);
}
}