191192193194195196197198
public void deleteAccount() throws CoinbaseException, IOException { if (_accountId != null) { deleteAccount(_accountId); } else { throw new UnspecifiedAccount(); } }
199200201202203204205206
public void updateAccount(Account account) throws CoinbaseException, IOException, UnspecifiedAccount { if (_accountId != null) { updateAccount(_accountId, account); } else { throw new UnspecifiedAccount(); } }
137138139140141142143144
public Money getBalance() throws IOException, CoinbaseException { if (_accountId != null) { return getBalance(_accountId); } else { throw new UnspecifiedAccount(); } }
175176177178179180181182
public void setPrimaryAccount() throws CoinbaseException, IOException { if (_accountId != null) { setPrimaryAccount(_accountId); } else { throw new UnspecifiedAccount(); } }
183184185186187188189190
@Override public Money getBalance() throws IOException, CoinbaseException { if (_accountId != null) { return getBalance(_accountId); } else { throw new UnspecifiedAccount(); } }
217218219220221222223224
@Override public void setPrimaryAccount() throws CoinbaseException, IOException { if (_accountId != null) { setPrimaryAccount(_accountId); } else { throw new UnspecifiedAccount(); } }
226227228229230231232233
@Override public void deleteAccount() throws CoinbaseException, IOException { if (_accountId != null) { deleteAccount(_accountId); } else { throw new UnspecifiedAccount(); } }
235236237238239240241242
@Override public void updateAccount(Account account) throws CoinbaseException, IOException, UnspecifiedAccount { if (_accountId != null) { updateAccount(_accountId, account); } else { throw new UnspecifiedAccount(); } }