A java implementation of the Binance API Specification
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
394 B

package com.sigmaflare.binancej.exceptions;
public class BinanceServiceException extends Exception {
public BinanceServiceException() { super(); }
public BinanceServiceException(String message) { super(message); }
public BinanceServiceException(String message, Throwable cause) { super(message, cause); }
public BinanceServiceException(Throwable cause) { super(cause); }
}