From 48d09a606e035cd9118191e1b0722368556f88ae Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sat, 11 Feb 2012 00:08:56 +0000 Subject: [PATCH] Added missing exceptions --- .gitattributes | 3 ++ inc/classes/exceptions/connection/.htaccess | 1 + ...s_ConnectionAlreadyRegisteredException.php | 46 +++++++++++++++++++ ...class_SocketAlreadyRegisteredException.php | 46 +++++++++++++++++++ 4 files changed, 96 insertions(+) create mode 100644 inc/classes/exceptions/connection/.htaccess create mode 100644 inc/classes/exceptions/connection/class_ConnectionAlreadyRegisteredException.php create mode 100644 inc/classes/exceptions/socket/class_SocketAlreadyRegisteredException.php diff --git a/.gitattributes b/.gitattributes index 077c9cb0..2eae21cc 100644 --- a/.gitattributes +++ b/.gitattributes @@ -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/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 @@ -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_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 diff --git a/inc/classes/exceptions/connection/.htaccess b/inc/classes/exceptions/connection/.htaccess new file mode 100644 index 00000000..3a428827 --- /dev/null +++ b/inc/classes/exceptions/connection/.htaccess @@ -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 index 00000000..67c81612 --- /dev/null +++ b/inc/classes/exceptions/connection/class_ConnectionAlreadyRegisteredException.php @@ -0,0 +1,46 @@ + + * @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 . + */ +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 index 00000000..39b334f7 --- /dev/null +++ b/inc/classes/exceptions/socket/class_SocketAlreadyRegisteredException.php @@ -0,0 +1,46 @@ + + * @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 . + */ +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] +?> -- 2.30.2