]> git.mxchange.org Git - friendica.git/blob - src/Core/Worker/Exception/ProcessPersistenceException.php
Merge pull request #10941 from nupplaphil/feat/worker_paradigm
[friendica.git] / src / Core / Worker / Exception / ProcessPersistenceException.php
1 <?php
2
3 namespace Friendica\Core\Worker\Exception;
4
5 use Throwable;
6
7 class ProcessPersistenceException extends \RuntimeException
8 {
9         public function __construct($message = "", Throwable $previous = null)
10         {
11                 parent::__construct($message, 500, $previous);
12         }
13 }