private void userLogin() { try { Account account = bank.SearchAccount(GetInput("id")); currentAccount = bank.VerifyPsw(account, GetInput("pwd")); } catch (Exception e) { Show("Error: " + e.Message); } }