org.knowm.xchange.poloniex.PoloniexException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-poloniex Show documentation
Show all versions of xchange-poloniex Show documentation
XChange implementation for the Poloniex Exchange
package org.knowm.xchange.poloniex;
import com.fasterxml.jackson.annotation.JsonProperty;
import si.mazi.rescu.HttpStatusExceptionSupport;
public class PoloniexException extends HttpStatusExceptionSupport {
@JsonProperty("error")
private String error;
public PoloniexException(@JsonProperty("error") String error) {
super(error);
this.error = error;
}
public String getError() {
return error;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy