クラスからの友人のメモを読んでいますが、次のコードのコメントの質問に対する答えは何ですか?
public void withdraw(double amount) {
if (amount > balance) {
IllegalArgumentException exception1 = new IllegalArgumentException("Amount exceeds balance");
throw exception1; //where caught??
}
balance = balance - amount;
}