com.intesens.kinto_http.ClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kinto-http-java Show documentation
Show all versions of kinto-http-java Show documentation
A Java client for the Kinto json store
package com.intesens.kinto_http;
/**
* Created by amalle on 16/09/16.
* Http client exception class
*/
public class ClientException extends Exception {
public ClientException(String message) {
super(message);
}
public ClientException(String message, Throwable throwable) {
super(message, throwable);
}
}