mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-25 18:19:22 +03:00
33 lines
742 B
PHP
33 lines
742 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of MailSo.
|
|
*
|
|
* (c) 2014 Usenko Timur
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
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);
|
|
}
|
|
}
|