mirror of
https://github.com/friendica/friendica
synced 2025-01-20 14:19:47 +00:00
14 lines
257 B
PHP
14 lines
257 B
PHP
|
<?php
|
||
|
|
||
|
namespace Friendica\Core\Config\Exception;
|
||
|
|
||
|
use Throwable;
|
||
|
|
||
|
class ConfigPersistenceException extends \RuntimeException
|
||
|
{
|
||
|
public function __construct($message = "", Throwable $previous = null)
|
||
|
{
|
||
|
parent::__construct($message, 500, $previous);
|
||
|
}
|
||
|
}
|