All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.kevcodez.pubg.exception.ApiException.kt Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package de.kevcodez.pubg.exception

import okhttp3.Response

class ApiException(private val response: Response) : RuntimeException() {

    override fun toString(): String {
        return "API Exception\nResponse status code: ${response.code()}\nResponse body: ${response.body()?.string()}"
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy