%PDF- %PDF-
| Direktori : /www/varak.net/mail2.varak.net_old/libraries/ProjectSeven/Exceptions/ |
| Current File : /www/varak.net/mail2.varak.net_old/libraries/ProjectSeven/Exceptions/ClientException.php |
<?php
/*
* Copyright 2004-2014, AfterLogic Corp.
* Licensed under AGPLv3 license or AfterLogic license
* if commercial version of the product was purchased.
* See the LICENSE file for a full license statement.
*/
namespace ProjectSeven\Exceptions;
/**
* @category ProjectSeven
* @package Exceptions
*/
class ClientException extends Exception
{
/**
* @var array
*/
protected $aObjectParams;
/**
* @param type $iCode
* @param type $oPrevious
* @param type $sMessage
*/
public function __construct($iCode, $oPrevious = null, $sMessage = '', $aObjectParams = array())
{
$this->aObjectParams = $aObjectParams;
parent::__construct('' === $sMessage ? 'ClientException' : $sMessage, $iCode, $oPrevious);
}
/**
* @return array
*/
public function GetObjectParams()
{
return $this->aObjectParams;
}
}