]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/HTTPException.php
Exclude /api and /proxy from 2fa check
[friendica.git] / src / Network / HTTPException.php
index 7602290c2b873c3a7e8eddea441260e8b7feed4c..89c447b71470ecd302b86ae8f2f105c42c4969b2 100644 (file)
@@ -1,27 +1,27 @@
-<?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
+
+/**
+ * Throwable exceptions to return HTTP status code
+ *
+ * This list of Exception has been extracted from
+ * here http://racksburg.com/choosing-an-http-status-code/
+ */
+
+namespace Friendica\Network;
+
+use Exception;
+
+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);
+               }
+       }
+}