com.binance.api.client.exception.BinanceApiException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance-api-client Show documentation
Show all versions of binance-api-client Show documentation
Java implementation for Binance API
package com.binance.api.client.exception;
import com.binance.api.client.BinanceApiError;
/**
* An exception which can occur while invoking methods of the Binance API.
*/
public class BinanceApiException extends RuntimeException {
private static final long serialVersionUID = 3788669840036201041L;
/**
* Error response object returned by Binance API.
*/
private BinanceApiError error;
/**
* Instantiates a new binance api exception.
*
* @param error an error response object
*/
public BinanceApiException(BinanceApiError error) {
this.error = error;
}
/**
* Instantiates a new binance api exception.
*/
public BinanceApiException() {
super();
}
/**
* Instantiates a new binance api exception.
*
* @param message the message
*/
public BinanceApiException(String message) {
super(message);
}
/**
* Instantiates a new binance api exception.
*
* @param cause the cause
*/
public BinanceApiException(Throwable cause) {
super(cause);
}
/**
* Instantiates a new binance api exception.
*
* @param message the message
* @param cause the cause
*/
public BinanceApiException(String message, Throwable cause) {
super(message, cause);
}
/**
* @return the response error object from Binance API, or null if no response object was returned (e.g. server returned 500).
*/
public BinanceApiError getError() {
return error;
}
@Override
public String getMessage() {
if (error != null) {
return error.getMsg();
}
return super.getMessage();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy