]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/HTTPException.php
Line endings are converted to unix style
[friendica.git] / src / Network / HTTPException.php
index 7602290c2b873c3a7e8eddea441260e8b7feed4c..b9bad457da13b0dbd17b45b7145abc1c12597197 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 be extracted from
+ * here http://racksburg.com/choosing-an-http-status-code/
+ */
+
+namespace Friendica\Network;
+
+use Exception;
+
+class HTTPException extends Exception
+{
+       var $httpcode = 200;
+       var $httpdesc = "";
+
+       public function __construct($message = '', $code = 0, Exception $previous = null)
+       {
+               if ($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);
+               }
+               parent::__construct($message, $code, $previous);
+       }
+}