mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-31 04:59:21 +03:00
+ Default Domain (AdminPanel/Login Screen) + Use short login form (AdminPanel/Domain) + Add unminified css file (app.css) * update jquery (1.10.3) * update jquery-ui (1.10.1) * update Lazy Load plugin (1.9.0) * update mousewheel plugin (3.1.4) - remove headjs
24 lines
544 B
PHP
24 lines
544 B
PHP
<?php
|
|
|
|
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);
|
|
}
|
|
}
|