- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- java.net.HttpRetryException
-
- 实现的所有接口
-
Serializable
public class HttpRetryException extends IOException
抛出以指示需要重试HTTP请求但由于启用了流模式而无法自动重试。- 从以下版本开始:
- 1.5
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 构造器 描述 HttpRetryException(String detail, int code)
根据指定的响应代码和异常详细消息构造一个新的HttpRetryException
HttpRetryException(String detail, int code, String location)
构造一个新的HttpRetryException
其中包含详细消息responseCode和Location响应头字段的内容。
-
方法摘要
所有方法 实例方法 具体的方法 变量和类型 方法 描述 String
getLocation()
如果错误是由重定向导致的,则返回Location头字段的值。String
getReason()
返回一个字符串,解释无法重试http请求的原因。int
responseCode()
返回http响应代码
-
-
-
构造方法详细信息
-
HttpRetryException
public HttpRetryException(String detail, int code)
根据指定的响应代码和异常详细消息构造新的HttpRetryException
- 参数
-
detail
- 详细信息。 -
code
- 来自服务器的HTTP响应代码。
-
-