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

net.dongliu.requests.exception.RequestsException Maven / Gradle / Ivy

There is a newer version: 5.0.8
Show newest version
package net.dongliu.requests.exception;

/**
 * Thrown when request failed.
 *
 * @author Liu Dong
 */
public class RequestsException extends RuntimeException {
    public RequestsException(String msg) {
        super(msg);
    }

    public RequestsException(String msg, Exception e) {
        super(msg, e);
    }

    public RequestsException(Exception e) {
        super(e);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy