X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fexceptions%2Fsocket%2Fclass_NoSocketRegisteredException.php;h=5baefb17bc9629467c8ef109d4fdbba15a80e564;hp=4278caf2c444540b6602cb1536ba7c3427301602;hb=38b72ffe74c133db5dfe999187de21e5eebf180f;hpb=4b88c118b615335d06bd74e444173d21aef4406c diff --git a/inc/classes/exceptions/socket/class_NoSocketRegisteredException.php b/inc/classes/exceptions/socket/class_NoSocketRegisteredException.php index 4278caf2..5baefb17 100644 --- a/inc/classes/exceptions/socket/class_NoSocketRegisteredException.php +++ b/inc/classes/exceptions/socket/class_NoSocketRegisteredException.php @@ -2,11 +2,11 @@ /** * This exception is thrown when the requested socket is not thrown * - * @author Roland Haeder + * @author Roland Haeder * @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 @@ -21,17 +21,17 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -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) { + public function __construct (HandleableProtocol $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() );