Gpf_Rpc_Request::getStdResponse PHP Метод

getStdResponse() закрытый публичный Метод

final public getStdResponse ( ) : stdClass
Результат stdClass
        public final function getStdResponse()
        {
            if (isset($this->responseError)) {
                throw new Gpf_Rpc_ExecutionException($this->responseError);
            }
            if ($this->response === null) {
                throw new Gpf_Exception("Request not executed yet.");
            }
            return $this->response;
        }