snappymail/rainloop/v/1.3.5.460/app/libraries/RainLoop/Exceptions/ClientException.php
RainLoop Team c4d3ef4ddd v1.3.5.460
2013-10-27 22:12:54 +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);
}
}