v1.2.7.416

This commit is contained in:
RainLoop Team 2013-09-30 21:01:08 +04:00
parent 54e2645fcf
commit 3b27abbe9a
434 changed files with 51 additions and 72 deletions

View file

@ -1,52 +0,0 @@
<?php
namespace MailSo\Net\Exceptions;
/**
* @category MailSo
* @package Net
* @subpackage Exceptions
*/
class SocketCanNotConnectToHostException extends \MailSo\Net\Exceptions\ConnectionException
{
/**
* @var string
*/
private $sSocketMessage;
/**
* @var int
*/
private $iSocketCode;
/**
* @param string $sSocketMessage = ''
* @param int $iSocketCode = 0
* @param string $sMessage = ''
* @param int $iCode = 0
* @param \Exception $oPrevious = null
*/
public function __construct($sSocketMessage = '', $iSocketCode = 0, $sMessage = '', $iCode = 0, $oPrevious = null)
{
parent::__construct($sMessage, $iCode, $oPrevious);
$this->sSocketMessage = $sSocketMessage;
$this->iSocketCode = $iSocketCode;
}
/**
* @return string
*/
public function getSocketMessage()
{
return $this->sSocketMessage;
}
/**
* @return int
*/
public function getSocketCode()
{
return $this->sSocketMessage;
}
}