friendica/src/Security/PermissionSet/Exception/PermissionSetNotFoundException.php
2021-10-31 15:14:57 +01:00

14 lines
272 B
PHP

<?php
namespace Friendica\Security\PermissionSet\Exception;
use Exception;
class PermissionSetNotFoundException extends \RuntimeException
{
public function __construct($message = '', Exception $previous = null)
{
parent::__construct($message, 404, $previous);
}
}