]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/HTTPException.php
Posts per author/server on the community pages (#13764)
[friendica.git] / src / Network / HTTPException.php
index 89c447b71470ecd302b86ae8f2f105c42c4969b2..c2f5c4867d43567748e7260bce85dd6623bb6ffe 100644 (file)
@@ -1,27 +1,51 @@
 <?php
-
 /**
- * Throwable exceptions to return HTTP status code
+ * @copyright Copyright (C) 2010-2023, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  *
- * This list of Exception has been extracted from
- * here http://racksburg.com/choosing-an-http-status-code/
  */
 
 namespace Friendica\Network;
 
 use Exception;
 
+/**
+ * Throwable exceptions to return HTTP status code
+ *
+ * This list of Exception has been extracted from
+ * here http://racksburg.com/choosing-an-http-status-code/
+ */
 abstract class HTTPException extends Exception
 {
-       public $httpdesc = '';
+       protected $httpdesc    = '';
+       protected $explanation = '';
 
-       public function __construct($message = '', Exception $previous = null)
+       public function __construct(string $message = '', Exception $previous = null)
        {
                parent::__construct($message, $this->code, $previous);
+       }
 
-               if (empty($this->httpdesc)) {
-                       $classname = str_replace('Exception', '', str_replace('Friendica\Network\HTTPException\\', '', get_class($this)));
-                       $this->httpdesc = preg_replace("|([a-z])([A-Z])|",'$1 $2', $classname);
-               }
+       public function getDescription()
+       {
+               return $this->httpdesc;
+       }
+
+       public function getExplanation()
+       {
+               return $this->explanation;
        }
 }