blob: afc4116d3bc92572cd83c261500514a1545326c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<?php
/**
* @author Robin J. Rogge <rrogge@bigpoint.net>
* @link http://www.pradosoft.com/
* @copyright 2010 Bigpoint GmbH
* @license http://www.pradosoft.com/license/
* @since 3.2
* @package Prado\Util
*/
namespace Prado\Util;
/**
* TRpcClientResponseException class
*
* This Exception is fired when the
*
* @author Robin J. Rogge <rrogge@bigpoint.net>
* @package Prado\Util
* @since 3.2
*/
class TRpcClientResponseException extends TApplicationException
{
/**
* @param string error message
* @param integer error code (optional)
*/
public function __construct($errorMessage, $errorCode = null)
{
$this->setErrorCode($errorCode);
parent::__construct($errorMessage);
}
}
|