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

net.dongliu.cute.http.exception.RequestInterruptedException Maven / Gradle / Ivy

The newest version!
package net.dongliu.cute.http.exception;

/**
 * Thrown when request send is interrupted.
 *
 * @author dongliu
 */
public class RequestInterruptedException extends RuntimeException {
    private static final long serialVersionUID = -584760694159999916L;

    public RequestInterruptedException(InterruptedException cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy