D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
thread-self
/
root
/
opt
/
psa
/
admin
/
plib
/
vendor
/
slim
/
slim
/
Slim
/
Exception
/
Filename :
HttpGoneException.php
back
Copy
<?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 HttpGoneException extends HttpSpecializedException { /** * @var int */ protected $code = 410; /** * @var string */ protected $message = 'Gone.'; protected string $title = '410 Gone'; protected string $description = 'The target resource is no longer available at the origin server.'; }