![JAR search and dependency download from the Maven repository](/logo.png)
com.hiczp.bilibili.api.retrofit.exception.BilibiliApiException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bilibili-api Show documentation
Show all versions of bilibili-api Show documentation
Bilibili Android client API library for Kotlin
package com.hiczp.bilibili.api.retrofit.exception
import com.hiczp.bilibili.api.retrofit.CommonResponse
import java.io.IOException
/**
* 当服务器返回的 code 不等于 0 时抛出
*/
class BilibiliApiException(
val commonResponse: CommonResponse
) : IOException(commonResponse.message?.takeIf { it.isNotEmpty() } ?: commonResponse.msg)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy