A much better name is HandleableProtocol.
[core.git] / inc / classes / exceptions / socket / class_NoSocketRegisteredException.php
index 4278caf2c444540b6602cb1536ba7c3427301602..e8d847537de8292c800a72b39651e8501707a12b 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * This exception is thrown when the requested socket is not thrown
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2014 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.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
  * 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 NoSocketRegisteredException extends FrameworkException {
+class NoSocketRegisteredException extends AbstractSocketException {
        /**
         * A Constructor for this exception
         *
-        * @param       $protocolInstance       An instance of a ProtocolHandler class
+        * @param       $protocolInstance       An instance of a HandleableProtocol class
         * @param       $code                           Error code
         * @return      void
         */
        public function __construct (ProtocolHandler $protocolInstance, $code) {
                // Construct the message
-               $message = sprintf("[%s:] Requested socket is not yet registered.",
+               $message = sprintf('[%s:] Requested socket is not yet registered.',
                        $protocolInstance->__toString()
                );