以下のコードで、APIリクエストが失敗した場合の適切なエラーハンドリングはどれですか? ```typescript const response = await fetch(url); // ここにエラーチェックを追加 const data = await response.json(); ```