グアバ-スローアブルクラス
Throwablesクラスは、Throwableインターフェイスに関連するユーティリティメソッドを提供します。
クラス宣言
以下はの宣言です com.google.common.base.Throwables クラス-
public final class Throwables
   extends Objectクラスメソッド
| シニア番号 | 方法と説明 | 
|---|---|
| 1 | static List<Throwable> getCausalChain(Throwable throwable) Throwable原因チェーンをリストとして取得します。 | 
| 2 | static Throwable getRootCause(Throwable throwable) throwableの最も内側の原因を返します。 | 
| 3 | static String getStackTraceAsString(Throwable throwable) toString()の結果を含む文字列を返し、その後にthrowableの完全な再帰的スタックトレースが続きます。 | 
| 4 | static RuntimeException propagate(Throwable throwable) スロー可能なものがRuntimeExceptionまたはErrorのインスタンスである場合はそのまま、または最後の手段として、RuntimeExceptionでラップしてから伝播します。 | 
| 5 | static <X extends Throwable> void propagateIfInstanceOf(Throwable throwable, Class<X> declaredType) それがdeclaredTypeのインスタンスである場合に限り、throwableをそのまま正確に伝播します。 | 
| 6 | static void propagateIfPossible(Throwable throwable) RuntimeExceptionまたはErrorのインスタンスである場合に限り、throwableをそのまま正確に伝播します。 | 
| 7 | static <X extends Throwable> void propagateIfPossible(Throwable throwable, Class<X> declaredType) RuntimeException、Error、またはdeclaredTypeのインスタンスである場合に限り、スロー可能をそのまま伝播します。 | 
| 8 | static <X1 extends Throwable,X2 extends Throwable>void propagateIfPossible(Throwable throwable, Class<X1> declaredType1, Class<X2> declaredType2) RuntimeException、Error、declaredType1、またはdeclaredType2のインスタンスである場合に限り、スロー可能をそのまま伝播します。 | 
継承されたメソッド
このクラスは、次のクラスからメソッドを継承します-
- java.lang.Object
Throwablesクラスの例
たとえば、任意のエディタを使用して次のJavaプログラムを作成します。 C:/> Guava.
GuavaTester.java
import java.io.IOException;
import com.google.common.base.Objects;
import com.google.common.base.Throwables;
public class GuavaTester {
   public static void main(String args[]) {
   
      GuavaTester tester = new GuavaTester();
      try {
         tester.showcaseThrowables();
         
      } catch (InvalidInputException e) {
         //get the root cause
         System.out.println(Throwables.getRootCause(e));
      
      } catch (Exception e) {
         //get the stack trace in string format
         System.out.println(Throwables.getStackTraceAsString(e));
      }
      try {
         tester.showcaseThrowables1();
      } catch (Exception e) {
         System.out.println(Throwables.getStackTraceAsString(e));
      }
   }
   public void showcaseThrowables() throws InvalidInputException {
      try {
         sqrt(-3.0);
      } catch (Throwable e) {
         //check the type of exception and throw it
         Throwables.propagateIfInstanceOf(e, InvalidInputException.class);
         Throwables.propagate(e);
      }
   }
   public void showcaseThrowables1() {
      try {
         int[] data = {1,2,3};
         getValue(data, 4);
      } catch (Throwable e) {
         Throwables.propagateIfInstanceOf(e, IndexOutOfBoundsException.class);
         Throwables.propagate(e);
      }
   }
   public double sqrt(double input) throws InvalidInputException {
      if(input < 0) throw new InvalidInputException();
      return Math.sqrt(input);
   }
   public double getValue(int[] list, int index) throws IndexOutOfBoundsException {
      return list[index];
   }
   public void dummyIO() throws IOException {
      throw new IOException();
   }
}
class InvalidInputException extends Exception {
}結果を確認する
を使用してクラスをコンパイルします javac 次のようにコンパイラ-
C:\Guava>javac GuavaTester.java次に、GuavaTesterを実行して結果を確認します。
C:\Guava>java GuavaTester結果を見てください。
InvalidInputException
java.lang.ArrayIndexOutOfBoundsException: 4
   at GuavaTester.getValue(GuavaTester.java:52)
   at GuavaTester.showcaseThrowables1(GuavaTester.java:38)
   at GuavaTester.main(GuavaTester.java:19)