]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/HTTPException.php
Refactor User::getAvatarUrlForId into getAvatarUrl
[friendica.git] / src / Network / HTTPException.php
index 7602290c2b873c3a7e8eddea441260e8b7feed4c..d6698605d0a08dc1a57d4cba28fd378a30ab13fa 100644 (file)
@@ -1,27 +1,45 @@
-<?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-2021, 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
+{
+       public $httpdesc = '';
+
+       public function __construct($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);
+               }
+       }
+}