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

com.github.kristofa.test.http.client.GetException Maven / Gradle / Ivy

Go to download

Mock and Proxy HTTP Server for testing purposes. Forked from https://github.com/jharlap/mock-http-server

There is a newer version: 4.1
Show newest version
package com.github.kristofa.test.http.client;

/**
 * Exception that indicates that a HTTP GET request failed.
 * 
 * @author kristof
 */
public class GetException extends HttpRequestException {

    private static final long serialVersionUID = 6224289105700218852L;

    /**
     * Create a new exception instance.
     * 
     * @param cause Causing exception.
     */
    public GetException(final Throwable cause) {
        super(cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy