%PDF- %PDF-
Direktori : /www/varak.net/mail2.varak.net_old/libraries/MailSo/Base/Exceptions/ |
Current File : /www/varak.net/mail2.varak.net_old/libraries/MailSo/Base/Exceptions/Exception.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 MailSo\Base\Exceptions; /** * @category MailSo * @package Base * @subpackage Exceptions */ class Exception extends \Exception { /** * @param string $sMessage * @param int $iCode * @param \Exception|null $oPrevious */ public function __construct($sMessage = '', $iCode = 0, $oPrevious = null) { $sMessage = 0 === strlen($sMessage) ? str_replace('\\', '-', get_class($this)).' ('. basename($this->getFile()).' ~ '.$this->getLine().')' : $sMessage; parent::__construct($sMessage, $iCode, $oPrevious); } }