Package com.drake.net.exception

Types

ConvertException
Link copied to clipboard
class ConvertException(response: Response, info: String, cause: Throwable?) : NetException
转换数据异常
DownloadFileException
Link copied to clipboard
class DownloadFileException(response: Response, info: String?, cause: Throwable?) : NetException
下载文件异常
NetCancellationException
Link copied to clipboard
class NetCancellationException(coroutineScope: CoroutineScope, message: String?) : CancellationException
取消网络任务的异常
NetConnectException
Link copied to clipboard
class NetConnectException(request: Request, cause: Throwable?) : NetException
NetException
Link copied to clipboard
open class NetException(request: Request, info: String?, cause: Throwable?) : IOException
Net网络异常
NetSocketTimeoutException
Link copied to clipboard
class NetSocketTimeoutException(request: Request, info: String?, cause: Throwable?) : NetException
NetUnknownHostException
Link copied to clipboard
class NetUnknownHostException(request: Request, cause: Throwable?) : NetException
NoCacheException
Link copied to clipboard
class NoCacheException(request: Request, info: String?, cause: Throwable?) : NetException
RequestParamsException
Link copied to clipboard
class RequestParamsException(response: Response) : NetException
400 - 499 客户端请求异常
ResponseException
Link copied to clipboard
class ResponseException(response: Response, info: String?) : NetException
如果返回200但是返回数据不符合业务要求可以抛出该异常
ServerResponseException
Link copied to clipboard
class ServerResponseException(response: Response) : NetException

= 500 服务器异常

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

Functions

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