X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPException%2FNotFoundException.php;h=6300d7acf303e9e28b18d502514524bec76bf14a;hb=46cd39fb34613f4b331793f19c0e562f93125066;hp=bd4f6151b488be947ec967e628179bc04be22058;hpb=a21f6135fcd8f0bfdb49de38a5ab4954d1784503;p=friendica.git diff --git a/src/Network/HTTPException/NotFoundException.php b/src/Network/HTTPException/NotFoundException.php index bd4f6151b4..6300d7acf3 100644 --- a/src/Network/HTTPException/NotFoundException.php +++ b/src/Network/HTTPException/NotFoundException.php @@ -1,9 +1,31 @@ -. + * + */ + +namespace Friendica\Network\HTTPException; + +use Friendica\Network\HTTPException; + +class NotFoundException extends HTTPException +{ + protected $code = 404; + protected $httpdesc = 'Not Found'; + protected $explanation = 'The requested resource could not be found but may be available in the future.'; +}