]> git.mxchange.org Git - core.git/commitdiff
Added missing exceptions
authorRoland Häder <roland@mxchange.org>
Sat, 11 Feb 2012 00:08:56 +0000 (00:08 +0000)
committerRoland Häder <roland@mxchange.org>
Sat, 11 Feb 2012 00:08:56 +0000 (00:08 +0000)
.gitattributes
inc/classes/exceptions/connection/.htaccess [new file with mode: 0644]
inc/classes/exceptions/connection/class_ConnectionAlreadyRegisteredException.php [new file with mode: 0644]
inc/classes/exceptions/socket/class_SocketAlreadyRegisteredException.php [new file with mode: 0644]

index 077c9cb0e63e2c7da6c2970710b9b11bb660de1f..2eae21cca3b2fde810bf1c5ffd51a5c4029c5a36 100644 (file)
@@ -13,6 +13,8 @@ inc/classes/exceptions/class_ svneol=native#text/plain
 inc/classes/exceptions/class_FrameworkException.php svneol=native#text/plain
 inc/classes/exceptions/compressor/.htaccess svneol=native#text/plain
 inc/classes/exceptions/compressor/class_MismatchingCompressorsException.php svneol=native#text/plain
 inc/classes/exceptions/class_FrameworkException.php svneol=native#text/plain
 inc/classes/exceptions/compressor/.htaccess svneol=native#text/plain
 inc/classes/exceptions/compressor/class_MismatchingCompressorsException.php svneol=native#text/plain
+inc/classes/exceptions/connection/.htaccess -text
+inc/classes/exceptions/connection/class_ConnectionAlreadyRegisteredException.php -text
 inc/classes/exceptions/controller/.htaccess svneol=native#text/plain
 inc/classes/exceptions/controller/class_DefaultControllerException.php svneol=native#text/plain
 inc/classes/exceptions/controller/class_InvalidControllerException.php svneol=native#text/plain
 inc/classes/exceptions/controller/.htaccess svneol=native#text/plain
 inc/classes/exceptions/controller/class_DefaultControllerException.php svneol=native#text/plain
 inc/classes/exceptions/controller/class_InvalidControllerException.php svneol=native#text/plain
@@ -97,6 +99,7 @@ inc/classes/exceptions/socket/class_InvalidServerSocketException.php svneol=nati
 inc/classes/exceptions/socket/class_InvalidSocketException.php svneol=native#text/plain
 inc/classes/exceptions/socket/class_NoSocketErrorDetectedException.php svneol=native#text/plain
 inc/classes/exceptions/socket/class_NoSocketRegisteredException.php svneol=native#text/plain
 inc/classes/exceptions/socket/class_InvalidSocketException.php svneol=native#text/plain
 inc/classes/exceptions/socket/class_NoSocketErrorDetectedException.php svneol=native#text/plain
 inc/classes/exceptions/socket/class_NoSocketRegisteredException.php svneol=native#text/plain
+inc/classes/exceptions/socket/class_SocketAlreadyRegisteredException.php -text
 inc/classes/exceptions/socket/class_SocketConnectionException.php svneol=native#text/plain
 inc/classes/exceptions/socket/class_SocketCreationException.php svneol=native#text/plain
 inc/classes/exceptions/socket/class_SocketOptionException.php svneol=native#text/plain
 inc/classes/exceptions/socket/class_SocketConnectionException.php svneol=native#text/plain
 inc/classes/exceptions/socket/class_SocketCreationException.php svneol=native#text/plain
 inc/classes/exceptions/socket/class_SocketOptionException.php svneol=native#text/plain
diff --git a/inc/classes/exceptions/connection/.htaccess b/inc/classes/exceptions/connection/.htaccess
new file mode 100644 (file)
index 0000000..3a42882
--- /dev/null
@@ -0,0 +1 @@
+Deny from all
diff --git a/inc/classes/exceptions/connection/class_ConnectionAlreadyRegisteredException.php b/inc/classes/exceptions/connection/class_ConnectionAlreadyRegisteredException.php
new file mode 100644 (file)
index 0000000..67c8161
--- /dev/null
@@ -0,0 +1,46 @@
+<?php
+/**
+ * This exception is thrown if the connection is already registered in a matching
+ * connection registry.
+ *
+ * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team
+ * @license            GNU GPL 3.0 or any newer version
+ * @link               http://www.ship-simu.org
+ *
+ * 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
+ * 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+class ConnectionAlreadyRegisteredException extends AbstractConnectionException {
+       /**
+        * A Constructor for this exception
+        *
+        * @param       $messageData    An array with all relevant data for the exception
+        * @param       $code                   Error code
+        * @return      void
+        */
+       public function __construct (array $messageData, $code) {
+               // Construct the message
+               $message = sprintf("[%s:] Connection with socket %s is already registered.",
+                       $messageData[0]->__toString(),
+                       $messageData[1]
+               );
+
+               // Call parent exception constructor
+               parent::__construct($message, $code);
+       }
+}
+
+// [EOF]
+?>
diff --git a/inc/classes/exceptions/socket/class_SocketAlreadyRegisteredException.php b/inc/classes/exceptions/socket/class_SocketAlreadyRegisteredException.php
new file mode 100644 (file)
index 0000000..39b334f
--- /dev/null
@@ -0,0 +1,46 @@
+<?php
+/**
+ * This exception is thrown if the socket is already registered in a matching
+ * socket registry.
+ *
+ * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team
+ * @license            GNU GPL 3.0 or any newer version
+ * @link               http://www.ship-simu.org
+ *
+ * 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
+ * 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+class SocketAlreadyRegisteredException extends AbstractSocketException {
+       /**
+        * A Constructor for this exception
+        *
+        * @param       $messageData    An array with all relevant data for the exception
+        * @param       $code                   Error code
+        * @return      void
+        */
+       public function __construct (array $messageData, $code) {
+               // Construct the message
+               $message = sprintf("[%s:] Socket %s is already registered.",
+                       $messageData[0]->__toString(),
+                       $messageData[1]
+               );
+
+               // Call parent exception constructor
+               parent::__construct($message, $code);
+       }
+}
+
+// [EOF]
+?>