]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/HTTPException/GoneException.php
spelling: one
[friendica.git] / src / Network / HTTPException / GoneException.php
index 77f0a5f7a251d8bc6db4ba56f3afa7316f2fa538..9cab0f22f755654489c570b2944eb11837763a06 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @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 GoneException extends HTTPException
 {
-       protected $code = 410;
+       protected $code        = 410;
+       protected $httpdesc    = 'Gone';
+       protected $explanation = 'Indicates that the resource requested is no longer available and will not be available again.';
 }