* @link http://www.pradosoft.com/ * @copyright 2010 Bigpoint GmbH * @license http://www.pradosoft.com/license/ * @version $Id$ * @since 3.2 * @package System.Web.Services */ /** * 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 * @version $Id$ * @package System.Web.Services * @since 3.2 */ class TRpcException extends TException { public function __construct($message, $errorCode = -1) { $this->setErrorCode($errorCode); parent::__construct($message); } }