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

top.focess.util.network.HttpResponseException Maven / Gradle / Ivy

There is a newer version: 1.1.24
Show newest version
package top.focess.util.network;

import java.io.IOException;

/**
 * Thrown to indicate that the request was not successful
 */
public class HttpResponseException extends IOException {

    /**
     * Constructs a HttpResponseException
     * @param exception the cause
     */
    public HttpResponseException(Exception exception) {
        super("This request was not successful.", exception);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy