mirror of
https://github.com/friendica/friendica
synced 2025-04-27 09:10:12 +00:00
13 lines
272 B
PHP
13 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);
|
|
}
|
|
}
|