com.despegar.http.client.HttpClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-java-native-client Show documentation
Show all versions of http-java-native-client Show documentation
HTTP Java client without dependencies
package com.despegar.http.client;
public class HttpClientException extends Exception {
/**
*
*/
private static final long serialVersionUID = -5742696325595211456L;
HttpClientException(String message, Throwable cause) {
super(message, cause);
}
}