mirror of
https://github.com/friendica/friendica
synced 2025-04-28 02:30:16 +00:00
AAdd domain specific Exceptions for PermissionSet
This commit is contained in:
parent
4242539059
commit
a38abd3363
3 changed files with 104 additions and 40 deletions
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Security\PermissionSet\Exception;
|
||||
|
||||
use Exception;
|
||||
|
||||
class PermissionSetNotFoundException extends \RuntimeException
|
||||
{
|
||||
public function __construct($message = '', Exception $previous = null)
|
||||
{
|
||||
parent::__construct($message, 500, $previous);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue