]> git.mxchange.org Git - core.git/blob - framework/main/exceptions/socket/class_SocketBindingException.php
Some updates:
[core.git] / framework / main / exceptions / socket / class_SocketBindingException.php
1 <?php
2 // Own namespace
3 namespace Org\Mxchange\CoreFramework\Socket;
4
5 /**
6  *
7  * @author              Roland Haeder <webmaster@shipsimu.org>
8  * @version             0.0.0
9 <<<<<<< HEAD:framework/main/exceptions/socket/class_SocketBindingException.php
10  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
11 =======
12  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2016 Core Developer Team
13 >>>>>>> Some updates::inc/main/exceptions/socket/class_SocketBindingException.php
14  * @license             GNU GPL 3.0 or any newer version
15  * @link                http://www.shipsimu.org
16  *
17  * This program is free software: you can redistribute it and/or modify
18  * it under the terms of the GNU General Public License as published by
19  * the Free Software Foundation, either version 3 of the License, or
20  * (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  *
27  * You should have received a copy of the GNU General Public License
28  * along with this program. If not, see <http://www.gnu.org/licenses/>.
29  */
30 class SocketBindingException extends AbstractSocketException {
31         /**
32          * A Constructor for this exception
33          *
34          * @param       $messageArray   Error message array
35          * @param       $code                   Error code
36          * @return      void
37          */
38         public function __construct (array $messageData, $code) {
39                 // Construct the message
40                 $message = sprintf('[%s:] Could not bind to socket %s: Type=%s, errno=%s, errstr=%s',
41                         $messageData[0]->__toString(),
42                         $messageData[1][0],
43                         gettype($messageData[2]),
44                         $messageData[3],
45                         $messageData[4]
46                 );
47
48                 // Call parent exception constructor
49                 parent::__construct($message, $code);
50         }
51
52 }