Hello,
So the behavior/method has been declared as:
public void printBalance(double balance)
But when you are invoking the same from inside handleLogin() you are making a call to
out.printBalance(balance);
correct?
Inside this method you have not declared a variable 'balance'.
Cheers,
Raj.