1
0
Fork 0

AAdd domain specific Exceptions for PermissionSet

This commit is contained in:
Philipp Holzer 2021-10-31 12:31:55 +01:00
commit a38abd3363
Signed by: nupplaPhil
GPG key ID: 24A7501396EB5432
3 changed files with 104 additions and 40 deletions

View file

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