]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/HTTPException/NotFoundException.php
Merge pull request #10956 from annando/escapetags
[friendica.git] / src / Network / HTTPException / NotFoundException.php
index b2577b1180a4d70d875c460cc503404edfd61208..33731bd1c10f8af872eb674517d403ef2fd8cecf 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2021, 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.';
 }