Package com.drake.net.exception

Types

ConvertException
Link copied to clipboard
class ConvertException(response: Response, message: String?, cause: Throwable?, tag: Any?) : HttpResponseException
转换数据异常
DownloadFileException
Link copied to clipboard
class DownloadFileException(response: Response, message: String?, cause: Throwable?, tag: Any?) : HttpResponseException
下载文件异常
HttpFailureException
Link copied to clipboard
open class HttpFailureException(request: Request, message: String?, cause: Throwable?) : NetException
该类表示Http请求在服务器响应之前失败
HttpResponseException
Link copied to clipboard
open class HttpResponseException(response: Response, message: String?, cause: Throwable?) : NetException
该类表示Http请求在服务器响应成功后失败
NetCancellationException
Link copied to clipboard
class NetCancellationException(coroutineScope: CoroutineScope, message: String?) : CancellationException
取消网络任务的异常
NetConnectException
Link copied to clipboard
class NetConnectException(request: Request, message: String?, cause: Throwable?) : HttpFailureException
连接错误
NetException
Link copied to clipboard
open class NetException(request: Request, message: String?, cause: Throwable?) : IOException
表示为Net发生的网络异常 在转换器com.drake.net.convert.NetConverter中抛出的异常如果没有继承该类都会被视为数据转换异常ConvertException, 该类一般用于自定义异常
NetSocketTimeoutException
Link copied to clipboard
class NetSocketTimeoutException(request: Request, message: String?, cause: Throwable?) : HttpFailureException
请求过程中读取或者写入超时
NetUnknownHostException
Link copied to clipboard
class NetUnknownHostException(request: Request, message: String?, cause: Throwable?) : HttpFailureException
主机域名无法访问
NetworkingException
Link copied to clipboard
class NetworkingException(request: Request, message: String?, cause: Throwable?) : HttpFailureException
无网络情况
NoCacheException
Link copied to clipboard
class NoCacheException(request: Request, message: String?, cause: Throwable?) : NetException
读取缓存失败 仅当设置强制缓存模式com.drake.net.cache.CacheMode.READcom.drake.net.cache.CacheMode.REQUEST_THEN_READ才会发生此异常
RequestParamsException
Link copied to clipboard
class RequestParamsException(response: Response, message: String?, cause: Throwable?, tag: Any?) : HttpResponseException
400 - 499 客户端请求异常
ResponseException
Link copied to clipboard
class ResponseException(response: Response, message: String?, cause: Throwable?, tag: Any?) : HttpResponseException
状态码在200..
ServerResponseException
Link copied to clipboard
class ServerResponseException(response: Response, message: String?, cause: Throwable?, tag: Any?) : HttpResponseException

= 500 服务器异常

URLParseException
Link copied to clipboard
open class URLParseException(message: String?, cause: Throwable?) : Exception
URL地址错误

Functions

NetCancellationException
Link copied to clipboard
fun CoroutineScope.NetCancellationException(message: String? = null): NetCancellationException
在作用域中抛出该异常将取消其作用域内所有的网络请求(如果存在的话)