blob: 7228915a65ef366d51a6221e31ba2a3f38bccbaf (
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
|
<?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\Web\Services
*/
namespace Prado\Web\Services;
use Prado\Exceptions\TException;
/**
* TRpcException class
*
* A TRpcException represents a RPC fault i.e. an error that is caused by the input data
* sent from the client.
*
* @author Robin J. Rogge <rrogge@bigpoint.net>
* @package Prado\Web\Services
* @since 3.2
*/
class TRpcException extends TException
{
public function __construct($message, $errorCode = -1)
{
$this->setErrorCode($errorCode);
parent::__construct($message);
}
}
|