Refactor Process for new paradigm

This commit is contained in:
Philipp Holzer 2021-10-24 20:43:59 +02:00
commit 38f70cc55a
Signed by: nupplaPhil
GPG key ID: 24A7501396EB5432
14 changed files with 456 additions and 491 deletions

View file

@ -0,0 +1,13 @@
<?php
namespace Friendica\Core\Worker\Exception;
use Throwable;
class ProcessPersistenceException extends \RuntimeException
{
public function __construct($message = "", Throwable $previous = null)
{
parent::__construct($message, 500, $previous);
}
}