mirror of
https://github.com/friendica/friendica
synced 2025-04-27 09:10:12 +00:00
13 lines
275 B
PHP
13 lines
275 B
PHP
<?php
|
|
|
|
namespace Friendica\Security\PermissionSet\Exception;
|
|
|
|
use Throwable;
|
|
|
|
class PermissionSetPersistenceException extends \RuntimeException
|
|
{
|
|
public function __construct($message = "", Throwable $previous = null)
|
|
{
|
|
parent::__construct($message, 500, $previous);
|
|
}
|
|
}
|