]> git.mxchange.org Git - core.git/blobdiff - inc/main/exceptions/socket/class_NoSocketErrorDetectedException.php
Continued:
[core.git] / inc / main / exceptions / socket / class_NoSocketErrorDetectedException.php
index 048c2f40952c6562b91cf215fc85aa94f8c217ae..16eb3235c3e291c8f1ed63eefbeb6f5628e4de19 100644 (file)
@@ -1,4 +1,7 @@
 <?php
+// Own namespace
+namespace CoreFramework\Socket;
+
 /**
  * This exception is thrown when socket_last_error() has returned zero value
  * which means no error. This should not happen unless someone called
@@ -9,6 +12,7 @@
  * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.shipsimu.org
+ * @todo               Those are logic exceptions and should be rewritten
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -41,7 +45,5 @@ class NoSocketErrorDetectedException extends AbstractSocketException {
                // Call parent exception constructor
                parent::__construct($message, $code);
        }
-}
 
-// [EOF]
-?>
+}