本文整理汇总了Java中com.mashape.unirest.http.exceptions.UnirestException.getCause方法的典型用法代码示例。如果您正苦于以下问题:Java UnirestException.getCause方法的具体用法?Java UnirestException.getCause怎么用?Java UnirestException.getCause使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.mashape.unirest.http.exceptions.UnirestException
的用法示例。
在下文中一共展示了UnirestException.getCause方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: publishResponse
import com.mashape.unirest.http.exceptions.UnirestException; //导入方法依赖的package包/类
/**
* Publishes success or failure result as HttpResponse from a HttpRequest
* @param response The http response to publish
* @param context The user specified context object
* @param completionBlock The success and failure code block reference to invoke the delegate
* @param uniException The reported errors for getting the http response
*/
protected static void publishResponse (com.mashape.unirest.http.HttpResponse<?> response,
HttpRequest request, APICallBack<HttpResponse> completionBlock, UnirestException uniException)
{
HttpResponse httpResponse = ((response == null) ? null : UnirestClient.convertResponse(response));
HttpContext context = new HttpContext(request, httpResponse);
//if there are no errors, try to convert to our internal format
if(uniException == null && httpResponse != null)
{
completionBlock.onSuccess(context, httpResponse);
}
else
{
Throwable innerException = uniException.getCause();
completionBlock.onFailure(context, new APIException(innerException.getMessage()));
}
}