Hallo! Ich bekomme diesen "cannot find symbol" error in diesem teil von meinem code
Das error zeigt auf account.
Java:
private Account getAccount(int accountNo) {
if (accountNo >= accounts.length || accounts[accountNo] == null) {
throw new NoSuchAccountException(accountNo);
}
return account;
}
Das error zeigt auf account.