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