]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/HTTPException/NotFoundException.php
spelling: one
[friendica.git] / src / Network / HTTPException / NotFoundException.php
index b2577b1180a4d70d875c460cc503404edfd61208..6300d7acf303e9e28b18d502514524bec76bf14a 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -25,5 +25,7 @@ use Friendica\Network\HTTPException;
 
 class NotFoundException extends HTTPException
 {
-       protected $code = 404;
+       protected $code        = 404;
+       protected $httpdesc    = 'Not Found';
+       protected $explanation = 'The requested resource could not be found but may be available in the future.';
 }