snappymail/rainloop/v/1.3.6.461/app/libraries/RainLoop/Exceptions/ClientException.php
RainLoop Team 486aedb57b v1.3.6.461
2013-10-29 04:54:17 +04:00

15 lines
299 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), $iCode, $oPrevious);
}
}