friendica/src/Core/Worker/Exception/ProcessPersistenceException.php

14 lines
258 B
PHP
Raw Normal View History

2021-10-24 20:43:59 +02:00
<?php
namespace Friendica\Core\Worker\Exception;
use Throwable;
class ProcessPersistenceException extends \RuntimeException
{
public function __construct($message = "", Throwable $previous = null)
{
parent::__construct($message, 500, $previous);
}
}