AAdd domain specific Exceptions for PermissionSet

This commit is contained in:
Philipp 2021-10-31 12:31:55 +01:00
parent 4242539059
commit a38abd3363
No known key found for this signature in database
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);
}
}