Package com.xeiam.xchange

Examples of com.xeiam.xchange.NotAvailableFromExchangeException


  }

  @Override
  public Collection<CurrencyPair> getExchangeSymbols() throws IOException {

    throw new NotAvailableFromExchangeException();
  }
View Full Code Here


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

    // TODO: implement withdraw
    throw new NotAvailableFromExchangeException();
  }
View Full Code Here

  }

  @Override
  public String placeMarketOrder(MarketOrder marketOrder) throws IOException {

    throw new NotAvailableFromExchangeException();
  }
View Full Code Here

    }
    else if (CurrencyPair.BTC_CNY.equals(currencyPair)) {
      lakeBTCTicker = lakeBTCTickers.getCny();
    }
    else {
      throw new NotAvailableFromExchangeException();
    }

    return LakeBTCAdapters.adaptTicker(lakeBTCTicker, currencyPair);
  }
View Full Code Here

    }
    else if (CurrencyPair.BTC_CNY.equals(currencyPair)) {
      lakeBTCOrderBook = getLakeBTCOrderBookCNY();
    }
    else {
      throw new NotAvailableFromExchangeException();
    }

    return LakeBTCAdapters.adaptOrderBook(lakeBTCOrderBook, currencyPair);
  }
View Full Code Here

  }

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

    throw new NotAvailableFromExchangeException();
  }
View Full Code Here

   * {@inheritDoc}
   */
  @Override
  public String withdrawFunds(String currency, BigDecimal amount, String address) throws IOException {

    throw new NotAvailableFromExchangeException();
  }
View Full Code Here

   * {@inheritDoc}
   */
  @Override
  public String requestDepositAddress(String currency, String... args) throws IOException {

    throw new NotAvailableFromExchangeException();
  }
View Full Code Here

   * {@inheritDoc}
   */
  @Override
  public UserTrades getTradeHistory(Object... arguments) throws IOException {

    throw new NotAvailableFromExchangeException();
  }
View Full Code Here

   * {@inheritDoc}
   */
  @Override
  public Trades getTrades(CurrencyPair currencyPair, Object... args) throws IOException {

    throw new NotAvailableFromExchangeException();
  }
View Full Code Here

TOP

Related Classes of com.xeiam.xchange.NotAvailableFromExchangeException

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.