
com.xeiam.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
The newest version!
package com.xeiam.xchange.poloniex;
import com.fasterxml.jackson.annotation.JsonProperty;
@SuppressWarnings("serial")
public class PoloniexException extends RuntimeException {
@JsonProperty("error")
String error;
public PoloniexException(@JsonProperty("error") String error) {
super();
this.error = error;
}
public String getError() {
return error;
}
public void setError(String error) {
this.error = error;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy