com.github.kristofa.test.http.client.GetException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mock-http-server Show documentation
Show all versions of mock-http-server Show documentation
Mock and Proxy HTTP Server for testing purposes. Forked from https://github.com/jharlap/mock-http-server
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