Refactor Process for new paradigm
This commit is contained in:
13
src/Core/Worker/Exception/ProcessPersistenceException.php
Normal file
13
src/Core/Worker/Exception/ProcessPersistenceException.php
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user