All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.knowm.xchange.binance.dto.BinanceException Maven / Gradle / Ivy

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