* @link http://www.pradosoft.com/ * @copyright 2010 Bigpoint GmbH * @license http://www.pradosoft.com/license/ * @since 3.2 * @package System.Util */ /** * TRpcClientResponseException class * * This Exception is fired when the * * @author Robin J. Rogge * @version $Id$ * @package System.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); } }