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

com.jdroid.java.http.exception.HttpResponseException.kt Maven / Gradle / Ivy

The newest version!
package com.jdroid.java.http.exception

import com.jdroid.java.exception.ErrorCodeException

/**
 * Exception thrown when there are unknown HTTP errors while communicating with the server.
 */
class HttpResponseException(message: String) : ErrorCodeException(HttpErrorCode.HTTP_RESPONSE_ERROR, message) {

    init {
        setTrackable(true)
    }

    companion object {
        private const val serialVersionUID = -1165226174367435109L
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy