]> git.mxchange.org Git - core.git/blobdiff - inc/classes/exceptions/socket/class_NoSocketRegisteredException.php
A much better name is HandleableProtocol.
[core.git] / inc / classes / exceptions / socket / class_NoSocketRegisteredException.php
index fbd5daa88d03ce05b89ef5f0831c3942c7b8df3e..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, 2010 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               $listenerInstance       An instance of a Listenable class
-        * @param               $code                           Error code
+        * @param       $protocolInstance       An instance of a HandleableProtocol class
+        * @param       $code                           Error code
         * @return      void
         */
-       public function __construct (Listenable $listenerInstance, $code) {
+       public function __construct (ProtocolHandler $protocolInstance, $code) {
                // Construct the message
-               $message = sprintf("[%s:] Requested socket is not yet registered.",
-                       $listenerInstance->__toString()
+               $message = sprintf('[%s:] Requested socket is not yet registered.',
+                       $protocolInstance->__toString()
                );
 
                // Call parent exception constructor