public static String analyze(Throwable e) {
if (!NetConnectionUtils.isNetConnected(BaseApplication.getInstance())) {
return "当前网络不可用,请检查网络设置";
} else if (e instanceof UnknownHostException) {
return "网络错误,请重试";
} else if (e instanceof ConnectException) {
return "请求失败,请重试";
} else if (e instanceof MalformedJsonException) {
return "请求失败,请重试";
} else if (e instanceof SocketTimeoutException) {
return "请求超时,请重试";
} else {
return "请求失败,请重试";
}
}
ResponseExceptionJobber.java 文件源码
java
阅读 31
收藏 0
点赞 0
评论 0
项目:RxJavaAndRetrofitSimple
作者:
评论列表
文章目录