Move ProfileFieldRepository::updateCollectionFromForm()

This commit is contained in:
Philipp
2021-10-10 20:39:35 +02:00
parent 6f692b857b
commit f403851946
9 changed files with 320 additions and 177 deletions

View File

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