Files
molenda.net/eeeeee/vendor/slim/slim/Slim/Exception/HttpForbiddenException.php
T
Sebastian Molenda ab96d82fcf init
2026-05-12 21:10:38 +02:00

29 lines
553 B
PHP

<?php
/**
* Slim Framework (https://slimframework.com)
*
* @license https://github.com/slimphp/Slim/blob/4.x/LICENSE.md (MIT License)
*/
declare(strict_types=1);
namespace Slim\Exception;
/** @api */
class HttpForbiddenException extends HttpSpecializedException
{
/**
* @var int
*/
protected $code = 403;
/**
* @var string
*/
protected $message = 'Forbidden.';
protected string $title = '403 Forbidden';
protected string $description = 'You are not permitted to perform the requested operation.';
}