blob: 42a7eb9d75a9e0f573ae44945f5999f6c3b2ca57 (
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
|
<?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;
use Prado\Exceptions\TApplicationException;
/**
* TRpcClientRequestException class
*
* This Exception is fired if the RPC request fails because of transport problems e.g. when
* there is no RPC server responding on the given remote host.
*
* @author Robin J. Rogge <rrogge@bigpoint.net>
* @package Prado\Util
* @since 3.2
*/
class TRpcClientRequestException extends TApplicationException
{
}
|