1. ホーム
  2. java

[解決済み] java.util.concurrent.ExecutionException 例外をどのように処理しますか?

2022-02-24 11:18:46

質問

私のコードの一部が java.util.concurrent.ExecutionException 例外をスローしています。 これはどのように処理すればよいですか?throws節を使用できますか?私はjavaに少し新しいです。

どのように解決するのですか?

例外を処理するのであれば、物事はとても簡単です。

   public void exceptionFix1() {
       try {
           //code that throws the exception
       } catch (ExecutionException e) {
           //what to do when it throws the exception
       }
   }

   public void exceptionFix2() throws ExecutionException {
       //code that throws the exception
   }

2つ目の例では、"left "で囲まなければならないことに留意してください。 try-catch ブロックを作成します。

例外を修正するのであれば、あなたのコードをもっと見る必要があります。