
org.knowm.xchange.binance.dto.BinanceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xchange-binance Show documentation
Show all versions of xchange-binance Show documentation
Development fork. Not for general use.
The newest version!
package org.knowm.xchange.binance.dto;
import com.fasterxml.jackson.annotation.JsonProperty;
public class BinanceException extends RuntimeException {
private final int code;
public BinanceException(@JsonProperty("code") int code, @JsonProperty("msg") String msg) {
super(msg);
this.code = code;
}
public int getCode() {
return code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy