]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/HTTPException/NotFoundException.php
The friendica constants have been moved to the app class
[friendica.git] / src / Network / HTTPException / NotFoundException.php
index a89d8a4e19bca1bf2ed48cee77ae436dfff5232d..e1e7902338afa5d530262d1519ec123236c201fb 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, 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.';
 }