mirror of
https://git.friendi.ca/friendica/friendica.git
synced 2025-06-07 18:44:26 +02:00
13 lines
261 B
PHP
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);
|
|
}
|
|
}
|