com.github.kristofa.test.http.client.HttpRequestException 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 HttpRequest failed.
*
* @author kristof
*/
public class HttpRequestException extends Exception {
private static final long serialVersionUID = -3214795946755533575L;
/**
* Creates a new instance.
*
* @param throwable Causing exception.
*/
public HttpRequestException(final Throwable throwable) {
super(throwable);
}
/**
* Creates a new instance.
*
* @param message Exception message.
*/
public HttpRequestException(final String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy