mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-10 16:58:07 +08:00
15 lines
311 B
PHP
15 lines
311 B
PHP
<?php
|
|
|
|
namespace RainLoop\Exceptions;
|
|
|
|
/**
|
|
* @category RainLoop
|
|
* @package Exceptions
|
|
*/
|
|
class ClientException extends Exception
|
|
{
|
|
public function __construct($iCode, $oPrevious = null)
|
|
{
|
|
parent::__construct(\RainLoop\Notifications::GetNotificationsMessage($iCode, $oPrevious), $iCode, $oPrevious);
|
|
}
|
|
}
|