
com.xeiam.xchange.hitbtc.dto.HitbtcException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-hitbtc Show documentation
Show all versions of xchange-hitbtc Show documentation
XChange implementation for Hitbtc exchange
The newest version!
package com.xeiam.xchange.hitbtc.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
@SuppressWarnings("serial")
public class HitbtcException extends RuntimeException {
@JsonProperty("message")
String message;
public HitbtcException(@JsonProperty("message") String message) {
super();
this.message = message;
}
public String getMessage() {
return message;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy