]> git.mxchange.org Git - friendica.git/blob - src/Core/PConfig/Exception/PConfigPersistenceException.php
Refactoring Core class structures ...
[friendica.git] / src / Core / PConfig / Exception / PConfigPersistenceException.php
1 <?php
2
3 namespace Friendica\Core\PConfig\Exception;
4
5 use Throwable;
6
7 class PConfigPersistenceException extends \RuntimeException
8 {
9         public function __construct($message = "", Throwable $previous = null)
10         {
11                 parent::__construct($message, 500, $previous);
12         }
13 }