146147148149150151152153
public Money getBalance() throws IOException, CoinbaseException { if (_accountId != null) { return getBalance(_accountId); } else { throw new UnspecifiedAccount(); } }
184185186187188189190191
public void setPrimaryAccount() throws CoinbaseException, IOException { if (_accountId != null) { setPrimaryAccount(_accountId); } else { throw new UnspecifiedAccount(); } }
192193194195196197198199
public void deleteAccount() throws CoinbaseException, IOException { if (_accountId != null) { deleteAccount(_accountId); } else { throw new UnspecifiedAccount(); } }
200201202203204205206207
public void updateAccount(Account account) throws CoinbaseException, IOException, UnspecifiedAccount { if (_accountId != null) { updateAccount(_accountId, account); } else { throw new UnspecifiedAccount(); } }
145146147148149150151152
183184185186187188189190