mirror of
https://github.com/friendica/friendica
synced 2025-04-26 19:10:11 +00:00
13 lines
253 B
PHP
13 lines
253 B
PHP
<?php
|
|
|
|
namespace Friendica\Core\Lock\Exception;
|
|
|
|
use Throwable;
|
|
|
|
class LockPersistenceException extends \RuntimeException
|
|
{
|
|
public function __construct($message = "", Throwable $previous = null)
|
|
{
|
|
parent::__construct($message, 500, $previous);
|
|
}
|
|
}
|