Move ProfileFieldRepository::updateCollectionFromForm()
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace Friendica\Profile\ProfileField\Exception;
|
||||
|
||||
use OutOfBoundsException;
|
||||
use Throwable;
|
||||
|
||||
class ProfileFieldNotFoundException extends OutOfBoundsException
|
||||
{
|
||||
public function __construct($message = "", Throwable $previous = null)
|
||||
{
|
||||
parent::__construct($message, 404, $previous);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user