]> git.mxchange.org Git - friendica.git/blob - src/Contact/LocalRelationship/Exception/LocalRelationshipPersistenceException.php
Fix test
[friendica.git] / src / Contact / LocalRelationship / Exception / LocalRelationshipPersistenceException.php
1 <?php
2
3 namespace Friendica\Contact\LocalRelationship\Exception;
4
5 class LocalRelationshipPersistenceException extends \RuntimeException
6 {
7         public function __construct($message = '', \Throwable $previous = null)
8         {
9                 parent::__construct($message, 500, $previous);
10         }
11 }