]> 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 7602290c2b873c3a7e8eddea441260e8b7feed4c..c2f5c4867d43567748e7260bce85dd6623bb6ffe 100644 (file)
@@ -1,27 +1,51 @@
-<?php\r
-\r
-/**\r
- * Throwable exceptions to return HTTP status code\r
- *\r
- * This list of Exception has be extracted from\r
- * here http://racksburg.com/choosing-an-http-status-code/\r
- */\r
-\r
-namespace Friendica\Network;\r
-\r
-use Exception;\r
-\r
-class HTTPException extends Exception\r
-{\r
-       var $httpcode = 200;\r
-       var $httpdesc = "";\r
-\r
-       public function __construct($message = '', $code = 0, Exception $previous = null)\r
-       {\r
-               if ($this->httpdesc == '') {\r
-                       $classname = str_replace('Exception', '', str_replace('Friendica\Network\HTTPException\\', '', get_class($this)));\r
-                       $this->httpdesc = preg_replace("|([a-z])([A-Z])|",'$1 $2', $classname);\r
-               }\r
-               parent::__construct($message, $code, $previous);\r
-       }\r
-}\r
+<?php
+/**
+ * @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/>.
+ *
+ */
+
+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
+{
+       protected $httpdesc    = '';
+       protected $explanation = '';
+
+       public function __construct(string $message = '', Exception $previous = null)
+       {
+               parent::__construct($message, $this->code, $previous);
+       }
+
+       public function getDescription()
+       {
+               return $this->httpdesc;
+       }
+
+       public function getExplanation()
+       {
+               return $this->explanation;
+       }
+}