org.oxerr.huobi.rest.HuobiClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of huobi-client-rest Show documentation
Show all versions of huobi-client-rest Show documentation
Client for <a href="https://www.huobi.com">Huobi</a> RESTful API.
The newest version!
package org.oxerr.huobi.rest;
import java.io.IOException;
public class HuobiClientException extends IOException {
private static final long serialVersionUID = 2014010401L;
public HuobiClientException() {
}
public HuobiClientException(String message) {
super(message);
}
public HuobiClientException(String message, Throwable cause) {
super(message, cause);
}
public HuobiClientException(Throwable cause) {
super(cause);
}
}