Package com.xeiam.xchange

Examples of com.xeiam.xchange.NotYetImplementedForExchangeException


    if (currencyPair.equals(CurrencyPair.BTC_USD)) {
      return BitKonanAdapters.adaptTicker(getBitKonanTickerBTC(), currencyPair);
    }
    else {
      throw new NotYetImplementedForExchangeException();
    }
  }
View Full Code Here


    if (currencyPair.equals(CurrencyPair.BTC_USD)) {
      return BitKonanAdapters.adaptOrderBook(getBitKonanOrderBookBTC());
    }
    else {
      throw new NotYetImplementedForExchangeException();
    }
  }
View Full Code Here

  }

  @Override
  public Trades getTrades(CurrencyPair currencyPair, Object... args) throws ExchangeException, NotAvailableFromExchangeException, NotYetImplementedForExchangeException, IOException {

    throw new NotYetImplementedForExchangeException();
  }
View Full Code Here

  }

  @Override
  public String withdrawFunds(String currency, BigDecimal amount, String address) throws ExchangeException, NotAvailableFromExchangeException, NotYetImplementedForExchangeException, IOException {

    throw new NotYetImplementedForExchangeException();
  }
View Full Code Here

  }

  @Override
  public String withdrawFunds(String currency, BigDecimal amount, String address) throws IOException {

    throw new NotYetImplementedForExchangeException();
  }
View Full Code Here

  }

  @Override
  public String requestDepositAddress(String currency, String... args) throws IOException {

    throw new NotYetImplementedForExchangeException();
  }
View Full Code Here

  }

  @Override
  public UserTrades getTradeHistory(Object... args) {

    throw new NotYetImplementedForExchangeException();
  }
View Full Code Here

  }

  @Override
  public Ticker getTicker(CurrencyPair currencyPair, Object... args) throws IOException {

    throw new NotYetImplementedForExchangeException();
  }
View Full Code Here

    throw new NotYetImplementedForExchangeException();
  }

  public String requestItBitDepositAddress(String currency, String... args) throws IOException {

    throw new NotYetImplementedForExchangeException();
  }
View Full Code Here

  }

  @Override
  public String withdrawFunds(String currency, BigDecimal amount, String address) throws ExchangeException, NotAvailableFromExchangeException, NotYetImplementedForExchangeException, IOException {

    throw new NotYetImplementedForExchangeException();
  }
View Full Code Here

TOP

Related Classes of com.xeiam.xchange.NotYetImplementedForExchangeException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.