com.binance.connector.client.exceptions.BinanceConnectorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of binance-connector-java Show documentation
Show all versions of binance-connector-java Show documentation
lightweight connector to API
package com.binance.connector.client.exceptions;
public class BinanceConnectorException extends RuntimeException {
private static final long serialVersionUID = 1L;
public BinanceConnectorException(String fullErrMsg) {
super(fullErrMsg);
}
}